2024-06-11 08:16:34 +00:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import "./globals.css";
|
|
|
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: "Create Next App",
|
|
|
|
description: "Generated by create next app",
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
children: React.ReactNode;
|
|
|
|
}>) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
2024-06-11 13:37:22 +00:00
|
|
|
<body className={inter.className}>
|
|
|
|
<div id="sidebar">
|
|
|
|
SIDEBAR
|
|
|
|
</div>
|
|
|
|
{children}</body>
|
2024-06-11 08:16:34 +00:00
|
|
|
</html>
|
|
|
|
);
|
|
|
|
}
|