import { createFileRoute } from "@tanstack/react-router" import useAuth from "@/hooks/useAuth" export const Route = createFileRoute("/_layout/")({ component: Dashboard, head: () => ({ meta: [ { title: "Dashboard - FastAPI Cloud", }, ], }), }) function Dashboard() { const { user: currentUser } = useAuth() return (

Hi, {currentUser?.full_name || currentUser?.email} 👋

Welcome back, nice to see you again!!!

) }