full upgrade

This commit is contained in:
2026-01-07 23:13:25 +01:00
parent 4cd3f60c98
commit c5efd28383
23 changed files with 693 additions and 226 deletions

View File

@@ -4,8 +4,8 @@ import { Inter } from "next/font/google";
import React from "react";
import { ToastProvider } from "@/components/Toast";
import { AnalyticsProvider } from "@/components/AnalyticsProvider";
import { PerformanceDashboard } from "@/components/PerformanceDashboard";
import { BackgroundBlobs } from "@/components/BackgroundBlobs";
import { ErrorBoundary } from "@/components/ErrorBoundary";
const inter = Inter({
variable: "--font-inter",
@@ -29,13 +29,14 @@ export default function RootLayout({
<title>Dennis Konkol&#39;s Portfolio</title>
</head>
<body className={inter.variable}>
<AnalyticsProvider>
<ToastProvider>
<BackgroundBlobs />
<div className="relative z-10">{children}</div>
<PerformanceDashboard />
</ToastProvider>
</AnalyticsProvider>
<ErrorBoundary>
<AnalyticsProvider>
<ToastProvider>
<BackgroundBlobs />
<div className="relative z-10">{children}</div>
</ToastProvider>
</AnalyticsProvider>
</ErrorBoundary>
</body>
</html>
);