We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45d98da commit 14b2093Copy full SHA for 14b2093
src/app/admin/layout.tsx
@@ -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