feat: add animated MovingGradient background

This commit is contained in:
c0mrade
2026-01-31 22:41:16 +03:00
parent c60a242f1d
commit 24781f32ec
3 changed files with 63 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ import TicketNotificationBell from '@/components/TicketNotificationBell';
import { MobileBottomNav } from './MobileBottomNav';
import { AppHeader } from './AppHeader';
import { MovingGradient } from './MovingGradient';
import { slideUp, slideUpTransition } from '@/components/motion/transitions';
@@ -360,7 +361,10 @@ export function AppShell({ children }: AppShellProps) {
: 64;
return (
<div className="min-h-screen bg-dark-950">
<div className="min-h-screen">
{/* Animated background */}
<MovingGradient />
{/* Global components */}
<WebSocketNotifications />
<SuccessNotificationModal />