Add src/app/shop/page.tsx

This commit is contained in:
2026-03-29 22:41:06 +00:00
parent b7acefa884
commit 06cdbea483

64
src/app/shop/page.tsx Normal file
View File

@@ -0,0 +1,64 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ShopPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="grid"
cardStyle="subtle-shadow"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#services" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Chef Artisan"
/>
</div>
<div className="pt-24">
<ProductCardOne
title="Curated Gourmet Selection"
description="Explore our premium selection of ingredients and culinary tools."
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="split"
products={[
{ id: "p1", name: "Artisan Olive Oil", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/extra-virgin-olive-oil-with-rosemary-wooden-table_23-2148443905.jpg" },
{ id: "p2", name: "Truffle Infused Salt", price: "$28.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-salt-various-spices-bowl-with-copy-space_23-2148560946.jpg" },
{ id: "p3", name: "Professional Chef Knife", price: "$120.00", imageSrc: "http://img.b2bpic.net/free-photo/professional-kitchen-knife-set-wooden-background_23-2148206253.jpg" },
{ id: "p4", name: "Culinary Masterclass Kit", price: "$85.00", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-kitchen-tools-with-copy-space_23-2148441113.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{ title: "Connect", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
copyrightText="© 2024 Chef Artisan. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}