Add src/app/products/page.tsx

This commit is contained in:
2026-05-09 19:35:56 +00:00
parent df21460c01
commit 08362d91ce

68
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,68 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="none"
cardStyle="gradient-radial"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Collections", id: "/#collections" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/#story" },
{ name: "Contact", id: "/#contact" },
]}
brandName="AL SHAMALI"
/>
</div>
<div id="products" data-section="products" className="py-24">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Signature Gold Watch", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-photo/spanish-traditional-comb-still-life_23-2150154089.jpg" },
{ id: "p2", name: "Imperial Cufflinks", price: "$450", imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-with-basket_23-2150329682.jpg" },
{ id: "p3", name: "Layered Gold Chain", price: "$850", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-palo-santo_23-2151936999.jpg" },
{ id: "p4", name: "Gold Ring", price: "$600", imageSrc: "http://img.b2bpic.net/free-photo/expensive-golden-ring-with-white-powder-background_23-2150347047.jpg" },
{ id: "p5", name: "Luxury Earrings", price: "$950", imageSrc: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-female-wearing-silver-necklace-with-beautiful-lock-pendant_181624-27833.jpg" },
{ id: "p6", name: "Gold Bracelet", price: "$750", imageSrc: "http://img.b2bpic.net/free-photo/golden-cufflings-wedding-rings-watch-lie-wooden-table_8353-405.jpg" },
]}
title="Our Products"
description="Explore our complete collection of premium luxury accessories."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Luxury", items: [{ label: "Home", href: "/" }] },
{ title: "Products", items: [{ label: "Shop All", href: "/products" }] },
]}
logoText="AL SHAMALI"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}