Skip to content

Commit 14b2093

Browse files
committed
feat(admin): scaffold admin routes and base layout
1 parent 45d98da commit 14b2093

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/app/admin/layout.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React from "react";
2+
3+
export default function AdminLayout({
4+
children,
5+
}: Readonly<{
6+
children: React.ReactNode;
7+
}>) {
8+
return (
9+
<section className="min-h-screen flex bg-neutral-50 text-neutral-900 dark:bg-neutral-950 dark:text-neutral-100">
10+
{/* Navbar will go here soon */}
11+
<div className="flex-1 p-6">{children}</div>
12+
</section>
13+
);
14+
}

0 commit comments

Comments
 (0)