2023-07-23 22:26:35 +00:00
|
|
|
import Navbar from "@/components/Navbar";
|
|
|
|
import "./globals.css";
|
2023-07-27 04:40:20 +00:00
|
|
|
import Footer from "@/components/Footer";
|
2023-07-23 14:44:58 +00:00
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: {
|
2023-07-23 22:26:35 +00:00
|
|
|
children: React.ReactNode;
|
2023-07-23 14:44:58 +00:00
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
2023-07-23 22:26:35 +00:00
|
|
|
<body>
|
|
|
|
<Navbar></Navbar>
|
|
|
|
{children}
|
2023-07-27 04:40:20 +00:00
|
|
|
<Footer></Footer>
|
2023-07-23 22:26:35 +00:00
|
|
|
</body>
|
2023-07-23 14:44:58 +00:00
|
|
|
</html>
|
2023-07-23 22:26:35 +00:00
|
|
|
);
|
2023-07-23 14:44:58 +00:00
|
|
|
}
|