25 lines
498 B
TypeScript
25 lines
498 B
TypeScript
import { Metadata } from 'next'
|
|
|
|
import { Header } from '@/components/header'
|
|
|
|
import Sidebar from './components/sidebar'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Dashboard'
|
|
}
|
|
|
|
interface DashboardLayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default function RootLayout({ children }: DashboardLayoutProps) {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main className="flex flex-1 flex-col bg-muted/50">
|
|
<Sidebar className="flex-1">{children}</Sidebar>
|
|
</main>
|
|
</>
|
|
)
|
|
}
|