Update src/app/collection/page.tsx
This commit is contained in:
@@ -7,133 +7,72 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function CollectionPage() {
|
||||
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="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="product" data-section="product">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="New Arrivals"
|
||||
description="Discover the latest timepieces from world-renowned brands."
|
||||
products={[
|
||||
{
|
||||
id: "c1",
|
||||
brand: "Luxury Luxe",
|
||||
name: "Royal Chrono",
|
||||
price: "₹3,00,000",
|
||||
rating: 5,
|
||||
reviewCount: "24",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-premium-stainless-steel-luxury-watch-m-1774618041277-a9ea3d96.png?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
brand: "Gold Standard",
|
||||
name: "Midnight Edition",
|
||||
price: "₹4,50,000",
|
||||
rating: 5,
|
||||
reviewCount: "18",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-gold-limited-edition-watch-with-leathe-1774618055220-38d01d92.png?_wi=4",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="New Arrivals"
|
||||
description="Discover the latest timepieces from world-renowned brands."
|
||||
products={[
|
||||
{ id: "c1", brand: "Luxury Luxe", name: "Royal Chrono", price: "₹3,00,000", rating: 5, reviewCount: "24", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-premium-stainless-steel-luxury-watch-m-1774618041277-a9ea3d96.png" },
|
||||
{ id: "c2", brand: "Gold Standard", name: "Midnight Edition", price: "₹4,50,000", rating: 5, reviewCount: "18", 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="testimonial" data-section="testimonial">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Customer Reviews"
|
||||
description="What our clients say about our luxury selection."
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Rajesh Sharma",
|
||||
date: "Jan 2025",
|
||||
title: "Excellent Service",
|
||||
quote: "The best place to buy a watch in Mumbai.",
|
||||
tag: "Verified",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-premium-stainless-steel-luxury-watch-m-1774618041277-a9ea3d96.png",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Priya Kapoor",
|
||||
date: "Dec 2024",
|
||||
title: "Timeless",
|
||||
quote: "Stunning collection, very professional staff.",
|
||||
tag: "Verified",
|
||||
avatarSrc: "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="testimonial" data-section="testimonial">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Customer Reviews"
|
||||
description="What our clients say about our luxury selection."
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Rajesh Sharma", date: "Jan 2025", title: "Excellent Service", quote: "The best place to buy a watch in Mumbai.", tag: "Verified", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-premium-stainless-steel-luxury-watch-m-1774618041277-a9ea3d96.png" },
|
||||
{ id: "t2", name: "Priya Kapoor", date: "Dec 2024", title: "Timeless", quote: "Stunning collection, very professional staff.", tag: "Verified", avatarSrc: "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?_wi=3"
|
||||
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>
|
||||
<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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user