Files
turbovault-app/app/views/pages/home.html.erb
Ryan Kazokas 69993a3bf5 Deploy to production: GitHub Actions + ghcr.io + Kubernetes
- Switch from Gitea to GitHub Container Registry (ghcr.io)
- Add GitHub Actions workflow with Tailscale connectivity
- Update k8s manifests for cloud nodes and Traefik ingress
- Configure for turbo.kazcloud.dev domain
- Test deployment with home page text change
2026-03-29 08:46:27 -04:00

27 lines
1.3 KiB
Plaintext

<div class="max-w-4xl mx-auto text-center py-16">
<h1 class="text-5xl font-bold text-gray-900 mb-6">Welcome to TurboVault</h1>
<p class="text-xl text-gray-600 mb-8">Track and manage your video game collection with ease (Test Deployment v1.0.1)</p>
<div class="space-x-4">
<%= link_to "Get Started", signup_path, class: "px-8 py-3 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 text-lg font-semibold" %>
<%= link_to "Login", login_path, class: "px-8 py-3 bg-gray-200 text-gray-800 rounded-lg hover:bg-gray-300 text-lg font-semibold" %>
</div>
<div class="mt-16 grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="text-xl font-bold mb-2">Track Your Collection</h3>
<p class="text-gray-600">Manage both physical and digital games across all platforms</p>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="text-xl font-bold mb-2">Organize with Collections</h3>
<p class="text-gray-600">Create custom collections and subcollections for your games</p>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="text-xl font-bold mb-2">View Statistics</h3>
<p class="text-gray-600">See insights about your collection with detailed stats</p>
</div>
</div>
</div>