From 0a78d8846578fbe81c0ba2a1b590e1db00b6f97b Mon Sep 17 00:00:00 2001 From: Eduard Schulteis Date: Mon, 26 Jan 2026 22:46:00 +0100 Subject: [PATCH] Add admin route and page --- app/(backend)/admin/page.tsx | 7 +++++++ lib/constans.ts | 9 +++++---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 app/(backend)/admin/page.tsx diff --git a/app/(backend)/admin/page.tsx b/app/(backend)/admin/page.tsx new file mode 100644 index 0000000..082a337 --- /dev/null +++ b/app/(backend)/admin/page.tsx @@ -0,0 +1,7 @@ +export default function AdminPage() { + return ( +
+

Admin Page

+
+ ); +} diff --git a/lib/constans.ts b/lib/constans.ts index 732ddb8..585b7bf 100644 --- a/lib/constans.ts +++ b/lib/constans.ts @@ -1,5 +1,6 @@ export const NAV_ITEMS = [ - { label: 'Home', href: '/' }, - { label: 'About', href: '/about' }, - { label: 'Contact', href: '/contact' }, -] \ No newline at end of file + { label: "Home", href: "/" }, + { label: "About", href: "/about" }, + { label: "Contact", href: "/contact" }, + { label: "Admin", href: "/admin" }, +];