Update src/app/page.tsx

This commit is contained in:
2026-03-31 17:03:10 +00:00
parent 6c4cdd2189
commit 1a78612f7d

View File

@@ -7,7 +7,7 @@ import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Zap, Shield, Star, CheckCircle } from 'lucide-react';
import { Zap, Shield, Star } from 'lucide-react';
export default function Home() {
const navItems = [{ name: "Home", id: "/" }];
@@ -40,9 +40,9 @@ export default function Home() {
<AboutMetric
title="The Vy Cutz Experience"
metrics={[
{ icon: Zap, label: "Years of Experience", value: "10+" },
{ icon: Shield, label: "Happy Clients", value: "500+" },
{ icon: Star, label: "Precision Cuts", value: "1000+" }
{ id: "m1", icon: Zap, label: "Years of Experience", value: "10+" },
{ id: "m2", icon: Shield, label: "Happy Clients", value: "500+" },
{ id: "m3", icon: Star, label: "Precision Cuts", value: "1000+" }
]}
metricsAnimation="slide-up"
/>