diff --git a/app/globals.css b/app/globals.css index f47a2d9..3aa8526 100644 --- a/app/globals.css +++ b/app/globals.css @@ -135,6 +135,19 @@ body { animation-fill-mode: both; } +/* Slow spin for DMRV concentric circles */ +@keyframes spin-60s { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +.animate-\[spin_60s_linear_infinite\] { + animation: spin-60s 60s linear infinite; +} /* Card hover effects */ .card-hover { diff --git a/app/layout.tsx b/app/layout.tsx index e5e3b3e..0a33649 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -25,7 +25,24 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + + + {/* Google tag (gtag.js) */} +