'use client'; import { UserNav } from '@/components/auth/UserNav'; import { useAuth } from '@/lib/contexts/AuthContext'; import Link from 'next/link'; export default function HomePage() { const { isAuthenticated, user, isLoading } = useAuth(); return (
{/* Header */}

ThrillWiki

Roller Coaster Database
{/* Main Content */}

Welcome to ThrillWiki

The comprehensive database of theme parks, roller coasters, and attractions worldwide

{!isLoading && (
{isAuthenticated && user ? (

Welcome back, {user.username}!

You're successfully logged in. Explore the features below:

Dashboard

View your profile and activity

Browse Parks

Coming soon...

Browse Rides

Coming soon...

My Reviews

Coming soon...

) : (

Get Started

Sign up or log in to access all features of ThrillWiki

✨ Track Your Visits

Keep a record of all the theme parks you've visited

🎢 Rate Roller Coasters

Share your experiences and read reviews from other enthusiasts

🌍 Explore Worldwide

Browse parks and attractions from around the globe

)}
)}
{/* Footer */}
); }