Dashboard
The main private page for your site is located atsrc/pages/dashboard/index.astro. Users must be authenticated to access this page.
/dashboard
/dashboard
src/pages/dashboard/index.astro
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
src/pages/dashboard/index.astro. Users must be authenticated to access this page.
/dashboard
---
import { DashboardLayout } from '~/layouts';
const user = Astro.locals.user;
if (!user) {
return Astro.redirect('/');
}
---
<DashboardLayout />