From b9f86038d5fe0e6c7b1b91ee15976f81cbeb9df5 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 22 May 2026 19:44:46 +0000 Subject: [PATCH] Slowed down the navigation bar animation. --- src/components/ui/NavbarFloating.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/NavbarFloating.tsx b/src/components/ui/NavbarFloating.tsx index 7f8370e..ede8187 100644 --- a/src/components/ui/NavbarFloating.tsx +++ b/src/components/ui/NavbarFloating.tsx @@ -72,7 +72,7 @@ const NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => { initial={{ height: 0 }} animate={{ height: "auto" }} exit={{ height: 0 }} - transition={{ duration: 0.5, ease: [0.625, 0.05, 0, 1] }} + transition={{ duration: 0.8, ease: [0.625, 0.05, 0, 1] }} className="overflow-hidden" >
-- 2.49.1