mirror of
https://github.com/FranP-code/inbox-negotiator.git
synced 2025-10-13 00:42:26 +00:00
15 lines
411 B
Plaintext
15 lines
411 B
Plaintext
---
|
|
import '@/styles/globals.css'
|
|
import Layout from '../layouts/Layout.astro';
|
|
import { Dashboard } from '../components/Dashboard';
|
|
import { ProtectedRoute } from '../components/ProtectedRoute';
|
|
import { Navbar } from '../components/Navbar';
|
|
---
|
|
|
|
<Layout title="Dashboard - InboxNegotiator">
|
|
<Navbar client:load />
|
|
|
|
<ProtectedRoute client:load>
|
|
<Dashboard client:load />
|
|
</ProtectedRoute>
|
|
</Layout> |