Update src/app/page.tsx

This commit is contained in:
2026-05-08 16:04:20 +00:00
parent 9d6ecef00a
commit 577e3dd666

View File

@@ -6,12 +6,12 @@ import ContactText from '@/components/sections/contact/ContactText';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Film, Instagram, ShieldCheck, Twitter, Wind, Zap } from "lucide-react";
export default function LandingPage() {
@@ -119,33 +119,29 @@ export default function LandingPage() {
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
animationType="slide-up"
<MetricCardThree
animationType="depth-3d"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "m1", value: "2.9s", title: "0-100 km/h", description: "Feel the surge in your core.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/abstract-view-of-carbon-fiber-structure--1778252901813-d53fb45c.png" },
{ id: "m2", value: "350+", title: "Top Speed km/h", description: "Conquer the horizon.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/close-up-of-an-aerodynamic-air-intake-ve-1778252908896-b9d063de.png" },
{ id: "m3", value: "100%", title: "Crafted Perfection", description: "Italian soul in every stitch.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/engine-detail-shot-high-performance-v12--1778252918211-1aecd29d.png" }
]}
title="Proven Performance"
description="Figures that reflect pure adrenaline."
metrics={[
{ id: "m1", icon: Zap, value: "2.9s", title: "0-100 km/h" },
{ id: "m2", icon: Wind, value: "350+", title: "Top Speed km/h" },
{ id: "m3", icon: ShieldCheck, value: "100%", title: "Crafted Perfection" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
<TestimonialCardFifteen
testimonial="Driving a Lambo isn't a purchase, it's an awakening. Precision in the corners, power in the straights. Absolute icon."
rating={5}
author="Sarah J."
avatars={[{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/portrait-of-a-confident-stylish-collecto-1778252983491-08491f21.png", alt: "Sarah J." }]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Sarah J.", date: "Jan 2025", title: "Entrepreneur", quote: "Driving a Lambo isn't a purchase, it's an awakening.", tag: "Performance", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/portrait-of-a-confident-stylish-collecto-1778252983491-08491f21.png" },
{ id: "t2", name: "Mark R.", date: "Feb 2025", title: "Collector", quote: "The craftsmanship and power are absolutely unmatched.", tag: "Design", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/portrait-of-a-professional-investor-look-1778253002642-c3366e2a.png" },
{ id: "t3", name: "Elena M.", date: "Mar 2025", title: "Racing Pro", quote: "Precision in the corners, power in the straights.", tag: "Experience", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/portrait-of-a-female-entrepreneur-elegan-1778253021304-bad56ca1.png" },
{ id: "t4", name: "David K.", date: "Apr 2025", title: "Architect", quote: "True automotive design poetry, performance art.", tag: "Design", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/professional-racing-driver-ready-for-the-1778253038601-88935b89.png" },
{ id: "t5", name: "Sofia G.", date: "May 2025", title: "CEO", quote: "The feeling of adrenaline is addictive. Absolute icon.", tag: "Lifestyle", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DDYWsP3qxDEp1HhVs1eZYJ7aHW/luxury-car-enthusiast-on-a-mountain-road-1778253057679-2a68ecb3.png" }
]}
title="Voice of the Bull"
description="Stories from those who own the road."
/>
</div>