This commit is contained in:
2025-01-05 17:52:41 +01:00
parent ceb64d5251
commit 143bd821e5
14 changed files with 404 additions and 130 deletions

View File

@@ -1,3 +1,5 @@
// app/layout.tsx
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
@@ -13,17 +15,17 @@ const geistMono = Geist_Mono({
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Dennis's Portfolio",
description: "A portfolio website showcasing my work and skills.",
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en">
<html lang="en" className="dark">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>