Skip to main content

Dashboard

The main private page for your site is located at src/pages/dashboard/index.astro. Users must be authenticated to access this page.
src/pages/dashboard/index.astro
---
import { DashboardLayout } from '~/layouts';

const user = Astro.locals.user;

if (!user) {
  return Astro.redirect('/');
}
---

<DashboardLayout />