23 lines
464 B
TypeScript
23 lines
464 B
TypeScript
import "./globals.css";
|
|
import Navbar from "@/components/navbar";
|
|
|
|
export const metadata = {
|
|
title: "Brian De Winne",
|
|
description: "Portfolio + lab dashboard",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className="overflow-x-hidden">
|
|
<body className="bg-white text-black antialiased overflow-x-hidden">
|
|
<Navbar />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|