'use client' import { useAuth } from '@/lib/hooks/useAuth' import { Link } from '@/components/common/Link' export default function DashboardPage() { const { user } = useAuth() return (

Welcome back, {user?.display_name || user?.email?.split('@')[0] || 'Friend'}!

We're glad you're here. This is your personal space to connect, learn, and grow.

{/* Quick Links */}

Community

Join the conversation in our forums. Connect with others who understand your journey.

Go to Forum

Resources

Explore our curated collection of resources to support you.

Browse Resources

The Journal

Read the latest stories and insights from our community blog.

Read Blog
) }