Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-27 11:12:58 +00:00

View File

@@ -2,13 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactFaq from '@/components/sections/contact/ContactFaq';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TextAbout from '@/components/sections/about/TextAbout';
import { Mail } from "lucide-react";
@@ -89,45 +89,44 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="bento-grid"
useInvertedBackground={false}
<TestimonialCardTwelve
cardAnimation="blur-reveal"
useInvertedBackground={true}
cardTitle="Client Excellence"
cardTag="Testimonials"
testimonials={[
{ id: "1", name: "Sarah Johnson", role: "CEO", company: "TechCorp", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfIZFoAJkDh6F4RwcPY3mMJCz/abstract-minimalist-architectural-detail-1774609761294-16b6a3f8.png" },
{ id: "2", name: "Michael Chen", role: "CTO", company: "InnovateLab", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfIZFoAJkDh6F4RwcPY3mMJCz/abstract-dark-marble-texture-with-subtle-1774609761422-0079d5f9.png" },
{ id: "3", name: "Emily Rodriguez", role: "Marketing Director", company: "GrowthCo", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfIZFoAJkDh6F4RwcPY3mMJCz/close-up-abstract-luxury-fabric-or-high--1774609762755-a952b987.png" },
{ id: "4", name: "David Kim", role: "Product Manager", company: "StartupXYZ", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfIZFoAJkDh6F4RwcPY3mMJCz/elegant-abstract-glass-reflection-on-dar-1774609761825-26aee63b.png" },
{ id: "1", name: "Sarah Johnson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfIZFoAJkDh6F4RwcPY3mMJCz/abstract-minimalist-architectural-detail-1774609761294-16b6a3f8.png" },
{ id: "2", name: "Michael Chen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfIZFoAJkDh6F4RwcPY3mMJCz/abstract-dark-marble-texture-with-subtle-1774609761422-0079d5f9.png" },
{ id: "3", name: "Emily Rodriguez", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfIZFoAJkDh6F4RwcPY3mMJCz/close-up-abstract-luxury-fabric-or-high--1774609762755-a952b987.png" },
{ id: "4", name: "David Kim", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfIZFoAJkDh6F4RwcPY3mMJCz/elegant-abstract-glass-reflection-on-dar-1774609761825-26aee63b.png" },
]}
title="Voices of Excellence"
description="Trusted by visionary brands around the world."
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
animationType="blur-reveal"
useInvertedBackground={false}
faqs={[
{ id: "q1", title: "How do we start?", content: "Reach out through our inquiry portal to book a strategy call." },
{ id: "q2", title: "What is the timeline?", content: "Projects typically range from 4-8 weeks depending on scope." },
{ id: "q3", title: "Do you offer maintenance?", content: "Yes, we provide ongoing performance optimization and support." },
<ContactSplitForm
title="Get In Touch"
description="Let's discuss how we can elevate your car's aesthetic with premium detailing."
useInvertedBackground={true}
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" }
]}
ctaTitle="Begin Your Transformation"
ctaDescription="Let's discuss how our premium solutions can elevate your business."
ctaButton={{ text: "Schedule Inquiry" }}
ctaIcon={Mail}
textarea={{ name: "message", placeholder: "Tell us about your detailing needs..." }}
buttonText="Submit Inquiry"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterLogoEmphasis
logoText="LuxeStudio"
copyrightText="© 2025 | LuxeStudio. All rights reserved."
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#features" }] },
{ items: [{ label: "Contact", href: "#contact" }, { label: "Terms", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}