feat: update homepage sections and navbar style

- Made the navbar glassmorphic.
- Replaced the static testimonial section with a dynamic, moving marquee.
- Removed the pricing section entirely.
- Updated the "Our Craft" section to be more visual with images.
This commit is contained in:
kudinDmitriyUp
2026-05-05 21:47:14 +00:00
parent ebf0ef1417
commit 9fa150d6fc
2 changed files with 4 additions and 1 deletions

View File

@@ -52,7 +52,7 @@ const NavbarCentered = ({ logo, navItems, ctaButton }: NavbarCenteredProps) => {
<nav
className={cls(
"fixed z-1000 top-0 left-0 w-full transition-all duration-500 ease-in-out",
isScrolled ? "h-15 bg-background/80 backdrop-blur-sm" : "h-20 bg-background/0 backdrop-blur-0"
isScrolled ? "h-15 bg-background/80 backdrop-blur-lg" : "h-20 bg-transparent"
)}
>
<div className="relative mx-auto flex items-center justify-between h-full w-content-width">

View File

@@ -315,3 +315,6 @@ export default function HomePage() {
</>
);
}
import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCards';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';