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" }, +];