TIA / app /layout.tsx
DJ-Goanna-Coding's picture
Upload folder using huggingface_hub
fa3ed75 verified
raw
history blame contribute delete
380 Bytes
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>
);
}