Add src/app/necklaces/page.tsx

This commit is contained in:
2026-06-03 19:01:30 +00:00
parent 3afdbeb06e
commit 855145bfa3

View File

@@ -0,0 +1,55 @@
'use client';
import { ThemeProvider } from '@/components/provider/ThemeProvider';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
const navItems = [
{ name: "Home", id: "/" },
{ name: "Earrings", id: "/earrings" },
{ name: "Necklaces", id: "/necklaces" },
{ name: "Bracelets", id: "/bracelets" }
];
const necklacesProducts = Array.from({ length: 13 }, (_, i) => ({
id: `necklace-${i + 1}`,
brand: "JewelCo", name: `Stunning Necklace ${i + 1}`,
price: `$${(Math.random() * 200 + 100).toFixed(2)}`,
rating: Math.floor(Math.random() * 5) + 1,
reviewCount: `${Math.floor(Math.random() * 250) + 15} reviews`,
imageSrc: `https://picsum.photos/seed/necklace${i+1}/400/300`,
imageAlt: `Stunning Necklace ${i + 1}`,
}));
export default function NecklacesPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="solid"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<NavbarLayoutFloatingOverlay
navItems={navItems}
brandName="JewelCo"
logoSrc="https://images.unsplash.com/photo-1596701830501-1b0337c7689d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NTgzODJ8MHwxfHNlYXJjaHw1fHxqZXdlbHJ5JTIwbG9nb3xlbnwwfHx8fDE3MTU0NjcwNDd8MA&ixlib=rb-4.0.3&q=80&w=1080"
/>
<div id="necklaces-collection" data-section="necklaces-collection">
<ProductCardTwo
title="Necklaces Collection"
description="Adorn your neck with our captivating collection of necklaces."
products={necklacesProducts}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
/>
</div>
</ThemeProvider>
);
}