Update src/app/products/page.tsx

This commit is contained in:
2026-04-05 11:06:17 +00:00
parent d30d8e5a72
commit 89cd5e76a2

View File

@@ -13,141 +13,59 @@ export default function LandingPage() {
defaultButtonVariant="directional-hover"
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">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Sama Shop"
/>
</div>
<div id="product-catalog-page" data-section="product-catalog-page">
<ProductCatalog
layout="page"
products={[
{
id: "p1",
name: "iPhone 17-Style Case",
price: "$10",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-woman-holding-smartphone_23-2150170627.jpg?_wi=3",
},
{
id: "p2",
name: "MagSafe Covers",
price: "$15",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-smartphone-with-pop-socket_52683-107786.jpg?_wi=3",
},
{
id: "p3",
name: "Custom Printed Cases",
price: "$12",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-using-her-smartphone-home-couch-by-holding-from-pop-socket_23-2150168403.jpg?_wi=3",
},
{
id: "p4",
name: "AirPods Pro 2",
price: "$25",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-stack-blue-conserves_23-2148785250.jpg?_wi=3",
},
{
id: "p5",
name: "Premium Tech Bundle",
price: "$40",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smartphone-tablet-with-ribbons-packet_23-2147959936.jpg?_wi=2",
},
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardFourteen
useInvertedBackground={false}
title="Quality Assured"
tag="Our Stats"
metricsAnimation="slide-up"
metrics={[
{
id: "m1",
value: "500+",
description: "Happy Clients",
},
{
id: "m2",
value: "100%",
description: "Quality Check",
},
{
id: "m3",
value: "24/7",
description: "WhatsApp Support",
},
{
id: "m4",
value: "50+",
description: "Available Styles",
},
{
id: "m5",
value: "100%",
description: "Delivery Coverage",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop",
items: [
{
label: "All Products",
href: "/products",
},
{
label: "Order Now",
href: "https://wa.me/96171859397",
},
],
},
{
title: "Contact",
items: [
{
label: "samashop@gmail.com",
href: "mailto:samashop@gmail.com",
},
{
label: "+961 71 859 397",
href: "tel:+96171859397",
},
],
},
]}
logoText="Sama Shop"
copyrightText="© 2026 Sama Shop. All rights reserved."
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "Contact", id: "/contact" }]}
brandName="Sama Shop"
button={{ text: "Order", href: "https://wa.me/96171859397" }}
/>
</div>
<div id="product-catalog-page" data-section="product-catalog-page">
<ProductCatalog
layout="page"
products={[
{ id: "p1", name: "iPhone 17-Style Case", price: "$10", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/low-angle-woman-holding-smartphone_23-2150170627.jpg" },
{ id: "p2", name: "MagSafe Covers", price: "$15", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-using-smartphone-with-pop-socket_52683-107786.jpg" },
{ id: "p3", name: "Custom Printed Cases", price: "$12", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-using-her-smartphone-home-couch-by-holding-from-pop-socket_23-2150168403.jpg" },
{ id: "p4", name: "AirPods Pro 2", price: "$25", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/top-view-stack-blue-conserves_23-2148785250.jpg" },
{ id: "p5", name: "Premium Tech Bundle", price: "$40", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smartphone-tablet-with-ribbons-packet_23-2147959936.jpg" }
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardFourteen
useInvertedBackground={false}
title="Quality Assured"
tag="Our Stats"
metricsAnimation="slide-up"
metrics={[
{ id: "m1", value: "500+", description: "Happy Clients" },
{ id: "m2", value: "100%", description: "Quality Check" },
{ id: "m3", value: "24/7", description: "WhatsApp Support" },
{ id: "m4", value: "50+", description: "Available Styles" },
{ id: "m5", value: "100%", description: "Delivery Coverage" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Shop", items: [{ label: "All Products", href: "/products" }, { label: "Order Now", href: "https://wa.me/96171859397" }] },
{ title: "Contact", items: [{ label: "samashop@gmail.com", href: "mailto:samashop@gmail.com" }, { label: "+961 71 859 397", href: "tel:+96171859397" }] }
]}
logoText="Sama Shop"
copyrightText="© 2026 Sama Shop. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);