layout fixes

This commit is contained in:
Sir Blob
2025-01-25 05:21:49 -05:00
parent 73765e51ff
commit 1db24c5ceb
7 changed files with 26 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
"use client"
export default function DoctorDashboard() {
return (
<section>
<h1>Doctor Dashboard</h1>
</section>
);
}

View File

@@ -0,0 +1,16 @@
"use client"
import { AppSidebar } from "@/components/panel-ui/app-sidebar"
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<main className="w-full" suppressHydrationWarning>
<AppSidebar />
{children}
</main>
)
}

View File

@@ -0,0 +1,11 @@
"use client"
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<section>{children}</section>
)
}