Initial portfolio commit (Next.js + Docker + Gitea integration)

This commit is contained in:
2026-02-25 11:38:31 +01:00
commit 5b7fe3545e
40 changed files with 8919 additions and 0 deletions

22
app/layout.tsx Normal file
View File

@@ -0,0 +1,22 @@
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>
);
}