This commit is contained in:
Dennis Konkol
2025-09-02 23:46:36 +00:00
parent ded873e6b4
commit 203a332306
22 changed files with 3886 additions and 194 deletions

View File

@@ -2,6 +2,7 @@ import "./globals.css";
import { Metadata } from "next";
import { Inter } from "next/font/google";
import React from "react";
import { ToastProvider } from "@/components/Toast";
const inter = Inter({
variable: "--font-inter",
@@ -24,7 +25,11 @@ export default function RootLayout({
<meta charSet="utf-8"/>
<title>Dennis Konkol&#39;s Portfolio</title>
</head>
<body className={inter.variable}>{children}</body>
<body className={inter.variable}>
<ToastProvider>
{children}
</ToastProvider>
</body>
</html>
);
}