Add admin route and page
This commit is contained in:
7
app/(backend)/admin/page.tsx
Normal file
7
app/(backend)/admin/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
export default function AdminPage() {
|
||||||
|
return (
|
||||||
|
<section className="container">
|
||||||
|
<h1>Admin Page</h1>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -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" },
|
||||||
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user