Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-02-11 10:18:32 +00:00
2 changed files with 31 additions and 5 deletions

View File

@@ -1265,4 +1265,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -10,6 +10,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import FeatureCardThree from '@/components/sections/feature/FeatureCardThree';
import { Sparkles, Award, Zap, CheckCircle, Star, Mail } from "lucide-react";
export default function LandingPage() {
@@ -20,7 +21,7 @@ export default function LandingPage() {
borderRadius="rounded"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
background="aurora"
background="floatingGradient"
cardStyle="soft-shadow"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="layered"
@@ -46,7 +47,7 @@ export default function LandingPage() {
description="Discover curated luxury timepieces that transcend trends. Each watch is a masterpiece of craftsmanship and engineering, selected for collectors who appreciate the finer details."
tag="Premium Collection"
tagIcon={Sparkles}
background={{variant: "aurora"}}
background={{variant: "sparkles-gradient"}}
buttons={[
{text: "Explore Collections", href: "collections"},
{text: "Learn More", href: "about"}
@@ -89,6 +90,31 @@ export default function LandingPage() {
/>
</div>
<div id="feature-cards-three" data-section="feature-cards-three">
<FeatureCardThree
title="Why We Stand Out"
description="Excellence through meticulous attention to detail and customer-first approach."
tag="Our Differentiators"
tagIcon={Sparkles}
textboxLayout="default"
useInvertedBackground="noInvert"
features={[
{
id: 1,
title: "Expert Authentication", description: "Every timepiece undergoes rigorous certification and documentation to guarantee authenticity and condition.", imageSrc: "https://img.b2bpic.net/free-photo/businessman-looking-his-watch-closeup_53876-176905.jpg", imageAlt: "Authentication process"
},
{
id: 2,
title: "Global Network", description: "Access to master craftspeople and collectors worldwide, bringing you rare and exceptional pieces.", imageSrc: "https://img.b2bpic.net/free-photo/man-holds-gold-watch_8353-10462.jpg", imageAlt: "Global sourcing"
},
{
id: 3,
title: "Lifetime Support", description: "Dedicated concierge service, professional maintenance, and lifelong authentication support.", imageSrc: "https://img.b2bpic.net/free-photo/close-up-clock-with-time-change_23-2149241142.jpg", imageAlt: "Customer support"
}
]}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
tag="Our Craft"
@@ -240,4 +266,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}