Spaces:
Paused
Paused
File size: 380 Bytes
fa3ed75 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import Sidebar from "./components/Sidebar";
export const metadata = { title: "CITADEL", description: "TIA UI" };
export default function RootLayout({ children }) {
return (
<html lang="en">
<body style={{ margin: 0, padding: 0 }}>
<Sidebar />
<div style={{ marginLeft: "220px" }}>
{children}
</div>
</body>
</html>
);
}
|