Compare commits

...

4 Commits

Author SHA1 Message Date
kudinDmitriyUp
960495577a feat: remove solid background from mobile navbar 2026-05-08 10:00:39 +00:00
eea0ea4704 Merge version_19_1778233736268 into main
Merge version_19_1778233736268 into main
2026-05-08 09:50:33 +00:00
kudinDmitriyUp
0f1c441597 feat: replace metrics section with gradient cards 2026-05-08 09:50:10 +00:00
15d1cab14b Merge version_18_1778231790767 into main
Merge version_18_1778231790767 into main
2026-05-08 09:17:53 +00:00
2 changed files with 9 additions and 21 deletions

View File

@@ -93,7 +93,7 @@ const NavbarCentered = ({ logo, navItems, ctaButton }: NavbarCenteredProps) => {
<div
ref={menuRef}
className="md:hidden fixed z-1000 top-3 left-3 right-3 p-6 rounded-lg card"
className="md:hidden fixed z-1000 top-3 left-3 right-3 p-6 rounded-lg bg-background/80 backdrop-blur-sm"
>
<div className="flex items-center justify-between mb-6">
<p className="text-xl text-foreground">Menu</p>

View File

@@ -2,7 +2,7 @@ import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
import ContactCta from '@/components/sections/contact/ContactCta';
import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
import MetricsGradientCards from '@/components/sections/metrics/MetricsGradientCards';
import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps';
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
import { Leaf, ShieldCheck, Sparkles } from "lucide-react";
@@ -126,37 +126,25 @@ export default function HomePage() {
</div>
<div id="metrics" data-section="metrics">
<MetricsFeatureCards
<MetricsGradientCards
tag="Our Impact"
title="Proven Excellence in Landscaping"
description="Our commitment to quality and customer satisfaction is reflected in our achievements and long-lasting client relationships."
metrics={[
{
value: "15+",
title: "Years of Experience",
features: [
"Local industry leaders",
"Skilled & certified team",
"Reliable service delivery",
],
label: "Years of Experience",
description: "Local industry leaders, skilled & certified team, reliable service delivery.",
},
{
value: "500+",
title: "Projects Completed",
features: [
"Residential & commercial",
"Diverse design styles",
"On-time & on-budget",
],
label: "Projects Completed",
description: "Residential & commercial, diverse design styles, on-time & on-budget.",
},
{
value: "98%",
title: "Customer Satisfaction",
features: [
"Glowing testimonials",
"Repeat clientele",
"Dedicated support",
],
label: "Customer Satisfaction",
description: "Glowing testimonials, repeat clientele, and dedicated support.",
},
]}
/>