// import { Link, routes } from '@redwoodjs/router' import { Metadata } from '@redwoodjs/web' import { useAuth } from 'src/auth' const DashboardPage = () => { const { currentUser } = useAuth() return ( <>

Hello {currentUser.firstName} {currentUser.lastName}

) } export default DashboardPage