- Implemented ActivityFeed component to display real-time user activity including coding, music, and chat interactions. - Added GooFilter and BackgroundBlobs components for enhanced visual effects. - Updated layout to include new components and ensure proper stacking context. - Enhanced Tailwind CSS configuration with new color and font settings. - Created API route to mock activity data from n8n. - Refactored main page structure to streamline component rendering.
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import "./globals.css";
|
|
import { Metadata } from "next";
|
|
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 { GooFilter } from "@/components/GooFilter";
|
|
import { BackgroundBlobs } from "@/components/BackgroundBlobs";
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<script defer src="https://analytics.dk0.dev/script.js" data-website-id="b3665829-927a-4ada-b9bb-fcf24171061e"></script>
|
|
<meta charSet="utf-8"/>
|
|
<title>Dennis Konkol's Portfolio</title>
|
|
</head>
|
|
<body className={inter.variable}>
|
|
<AnalyticsProvider>
|
|
<ToastProvider>
|
|
<GooFilter />
|
|
<BackgroundBlobs />
|
|
<div className="relative z-10">
|
|
{children}
|
|
</div>
|
|
<PerformanceDashboard />
|
|
</ToastProvider>
|
|
</AnalyticsProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Dennis Konkol | Portfolio",
|
|
description: "Portfolio of Dennis Konkol, a student and software engineer based in Osnabrück, Germany. Passionate about technology, coding, and solving real-world problems.",
|
|
keywords: ["Dennis Konkol", "Software Engineer", "Portfolio", "Student"],
|
|
authors: [{name: "Dennis Konkol", url: "https://dk0.dev"}],
|
|
openGraph: {
|
|
title: "Dennis Konkol | Portfolio",
|
|
description: "Explore my projects and contact me for collaboration opportunities!",
|
|
url: "https://dk0.dev",
|
|
siteName: "Dennis Konkol Portfolio",
|
|
images: [
|
|
{
|
|
url: "https://dk0.dev/api/og",
|
|
width: 1200,
|
|
height: 630,
|
|
alt: "Dennis Konkol Portfolio",
|
|
},
|
|
],
|
|
type: "website",
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Dennis Konkol | Portfolio",
|
|
description: "Student & Software Engineer based in Osnabrück, Germany.",
|
|
images: ["https://dk0.dev/api/og"],
|
|
},
|
|
};
|