feat: add activity feed and background effects

- 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.
This commit is contained in:
2026-01-06 20:10:00 +01:00
parent e74f85da41
commit 4dc727fcd6
16 changed files with 801 additions and 1172 deletions

View File

@@ -5,6 +5,8 @@ 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",
@@ -26,7 +28,11 @@ export default function RootLayout({
<body className={inter.variable}>
<AnalyticsProvider>
<ToastProvider>
{children}
<GooFilter />
<BackgroundBlobs />
<div className="relative z-10">
{children}
</div>
<PerformanceDashboard />
</ToastProvider>
</AnalyticsProvider>