mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 22:12:53 +00:00
33 lines
1.3 KiB
Plaintext
33 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.</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>
|