> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shipkit.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Private Pages

## Dashboard

The main private page for your site is located at `src/pages/dashboard/index.astro`. Users must be authenticated to access this page.

<Accordion title="/dashboard">
  src/pages/dashboard/index.astro

  ```tsx theme={null}
  ---
  import { DashboardLayout } from '~/layouts';

  const user = Astro.locals.user;

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

  <DashboardLayout />
  ```
</Accordion>
