import { useAuthStore } from '../stores/auth' export default function DashboardPage() { const { user } = useAuthStore() return (

Dashboard

Welcome back, {user?.display_name || user?.email || 'User'}!

Projects

Manage your projects and repositories

Tools

Spawn and manage development tools

Settings

Configure your account and preferences

) }