80 lines
4.1 KiB
TypeScript
80 lines
4.1 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
import { ShieldCheck, Wrench } from "lucide-react";
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="circleGradient"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="normal"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About Us", id: "/about" },
|
|
{ name: "Collection", id: "/collection" },
|
|
{ name: "Contact", id: "/contact" },
|
|
]}
|
|
brandName="WOW The Luxury Hub"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about-intro" data-section="about-intro">
|
|
<MetricSplitMediaAbout
|
|
useInvertedBackground={false}
|
|
title="About WOW The Luxury Hub"
|
|
description="With years of expertise, we provide an unparalleled experience for discerning collectors in Mumbai. We are your trusted partner in finding the perfect timepiece."
|
|
metrics={[
|
|
{ value: "10+", title: "Years Experience" },
|
|
{ value: "500+", title: "Satisfied Clients" },
|
|
]}
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-professional-horologist-carefully-exam-1774618042878-6b25e756.png"
|
|
mediaAnimation="slide-up"
|
|
metricsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="feature" data-section="feature">
|
|
<FeatureCardTwentyFive
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Our Craftsmanship"
|
|
description="We believe in the perfect blend of tradition and modernity."
|
|
features={[
|
|
{ title: "Expertise", description: "Master watchmakers with decades of experience.", icon: Wrench, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-professional-horologist-carefully-exam-1774618042878-6b25e756.png" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-professional-horologist-carefully-exam-1774618042878-6b25e756.png" }] },
|
|
{ title: "Quality", description: "Only the finest materials and movements.", icon: ShieldCheck, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-premium-stainless-steel-luxury-watch-m-1774618041277-a9ea3d96.png" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-gold-limited-edition-watch-with-leathe-1774618055220-38d01d92.png" }] },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/minimalist-luxury-gold-emblem-for-watch--1774618041235-883bda11.png"
|
|
columns={[
|
|
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Collection", href: "/collection" }] },
|
|
{ title: "Support", items: [{ label: "Contact Us", href: "/contact" }, { label: "About Us", href: "/about" }] },
|
|
]}
|
|
copyrightText="© 2025 | WOW The Luxury Hub. All Rights Reserved."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |