2 Commits

Author SHA1 Message Date
2089fb36c0 Switch to version 3: modified src/app/page.tsx 2026-05-09 19:39:29 +00:00
817d556780 Merge version_4 into main
Merge version_4 into main
2026-05-09 19:37:13 +00:00

View File

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