Add admin route and page

This commit is contained in:
2026-01-26 22:46:00 +01:00
parent 8bbe4a2e01
commit 0a78d88465
2 changed files with 12 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
export default function AdminPage() {
return (
<section className="container">
<h1>Admin Page</h1>
</section>
);
}

View File

@@ -1,5 +1,6 @@
export const NAV_ITEMS = [ export const NAV_ITEMS = [
{ label: 'Home', href: '/' }, { label: "Home", href: "/" },
{ label: 'About', href: '/about' }, { label: "About", href: "/about" },
{ label: 'Contact', href: '/contact' }, { label: "Contact", href: "/contact" },
] { label: "Admin", href: "/admin" },
];