diff --git a/app/globals.css b/app/globals.css index 2206260..941398d 100644 --- a/app/globals.css +++ b/app/globals.css @@ -60,9 +60,15 @@ 50% { box-shadow: 0 0 50px rgba(167,139,250,0.4), 0 0 80px rgba(139,92,246,0.2); } } - .animate-flame-out { animation: header-flame-out 3.2s cubic-bezier(0.4,0,0.2,1) infinite; } - .animate-float-up { animation: floatUp 0.6s ease-out forwards; } + @keyframes ticker { + from { transform: translateX(0); } + to { transform: translateX(-33.3333%); } + } + + .animate-flame-out { animation: header-flame-out 3.2s cubic-bezier(0.4,0,0.2,1) infinite; } + .animate-float-up { animation: floatUp 0.6s ease-out forwards; } .animate-pulse-glow { animation: pulseGlow 3s ease-in-out infinite; } + .animate-ticker { animation: ticker 50s linear infinite; } } *, *::before, *::after { box-sizing: border-box; } diff --git a/app/page.jsx b/app/page.jsx index 972a792..dfb3dc8 100644 --- a/app/page.jsx +++ b/app/page.jsx @@ -3,14 +3,13 @@ export default function Home() {
{/* Ambient orbs */} -
-
-
+
+
+
{/* ── NAV ── */}