diff --git a/src/components/Header.tsx b/src/components/Header.tsx index b5897bd..f8490e9 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -92,7 +92,7 @@ export function Header() { initial={{ opacity: 0 }} animate={{ opacity: 1 }} exit={{ opacity: 0 }} - className="fixed inset-0 z-0 bg-transparent" + className="fixed inset-0 z-0 bg-slate-300/60 backdrop-blur" />
diff --git a/src/components/HomeAbout.tsx b/src/components/HomeAbout.tsx index a20763c..b0d5c33 100644 --- a/src/components/HomeAbout.tsx +++ b/src/components/HomeAbout.tsx @@ -55,7 +55,7 @@ export function HomeAbout() { className="aspect-1108/632 w-277 bg-linear-to-r from-[#80caff] to-[#4f46e5] opacity-20" /> - Enterprise AI Agents That Never Sleep. - +
- - Building the infrastructure where AI agents can live, communicate, and evolve with complete sovereignty. - +

+ Building the infrastructure where AI agents can live, communicate, and evolve with complete sovereignty. +

+ scroll diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 9755dc9..9fd45b8 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -38,6 +38,7 @@ --animate-spin-reverse-slow: spin-reverse 4s linear infinite; --animate-spin-reverse-slower: spin-reverse 6s linear infinite; --animate-marquee-vertical: marquee-vertical 40s linear infinite; + --animate-bounce-y: bounce-y 1.5s infinite; --radius-4xl: 2rem; --radius-5xl: 2.5rem; @@ -72,6 +73,17 @@ } } + @keyframes bounce-y { + 0%, 100% { + transform: translateY(-10%); + animation-timing-function: cubic-bezier(0.8, 0, 1, 1); + } + 50% { + transform: translateY(0); + animation-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + } + @keyframes marquee-vertical { from { transform: translateY(0);