Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-05-09 19:37:14 +00:00

View File

@@ -5,13 +5,13 @@ import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
export default function LandingPage() {
return (
@@ -102,16 +102,15 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="slide-up"
textboxLayout="default"
<TestimonialCardTwelve
cardAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Amina S.", role: "Collector", testimonial: "Truly unmatched elegance.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-underwear-fur-coat-sitting-floor-antique-room_613910-10896.jpg" },
{ id: "t2", name: "Khalid F.", role: "Architect", testimonial: "The precision and gold quality are remarkable.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-hipster-arab-man-guy-sunglasses-posed-outdoor-street-sunset-sitting-road-shadows_627829-2723.jpg" },
{ id: "t1", name: "Amina S.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-underwear-fur-coat-sitting-floor-antique-room_613910-10896.jpg" },
{ id: "t2", name: "Khalid F.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-hipster-arab-man-guy-sunglasses-posed-outdoor-street-sunset-sitting-road-shadows_627829-2723.jpg" },
]}
title="Client Reflections"
description="Stories from our discerning community."
cardTitle="Client Reflections"
cardTag="Testimonials"
/>
</div>
@@ -131,6 +130,7 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }}
text="Experience the cinematic elegance of our latest collection."
buttons={[{ text: "Watch Collection", href: "#" }]}
animationType="entrance-slide"
/>
</div>
@@ -149,7 +149,7 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterBaseReveal
columns={[
{ title: "Luxury", items: [{ label: "About", href: "#story" }] },
{ title: "Products", items: [{ label: "Catalog", href: "/products" }] },
@@ -160,4 +160,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}