Update src/app/products/page.tsx

This commit is contained in:
2026-01-15 11:37:43 +00:00
parent 512f267cd3
commit a98281467b

View File

@@ -12,13 +12,13 @@ export default function ProductsPage() {
defaultButtonVariant="hover-bubble" defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
borderRadius="rounded" borderRadius="rounded"
contentWidth="compact" contentWidth="medium"
sizing="largeSmallSizeMediumTitles" sizing="medium"
background="aurora" background="aurora"
cardStyle="solid" cardStyle="glass-elevated"
primaryButtonStyle="double-inset" primaryButtonStyle="gradient"
secondaryButtonStyle="solid" secondaryButtonStyle="glass"
headingFontWeight="medium" showBlurBottom={false}
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
@@ -43,32 +43,16 @@ export default function ProductsPage() {
tag="Featured Products" tag="Featured Products"
products={[ products={[
{ {
id: "1", id: "1", name: "Single Origin Espresso", price: "$18.99", imageSrc: "https://img.b2bpic.net/free-photo/little-beverage-shot-wooden-board_140725-2421.jpg", imageAlt: "Premium espresso blend"
name: "Single Origin Espresso",
price: "$18.99",
imageSrc: "https://img.b2bpic.net/free-photo/little-beverage-shot-wooden-board_140725-2421.jpg",
imageAlt: "Premium espresso blend"
}, },
{ {
id: "2", id: "2", name: "Chamomile Flower Tea", price: "$14.99", imageSrc: "https://img.b2bpic.net/free-photo/fresh-green-yellow-leaves-garden_23-2148058684.jpg", imageAlt: "Organic chamomile tea"
name: "Chamomile Flower Tea",
price: "$14.99",
imageSrc: "https://img.b2bpic.net/free-photo/fresh-green-yellow-leaves-garden_23-2148058684.jpg",
imageAlt: "Organic chamomile tea"
}, },
{ {
id: "3", id: "3", name: "Silky Latte Blend", price: "$16.99", imageSrc: "https://img.b2bpic.net/free-photo/top-view-pancake-inside-round-metal-pan-around-powdered-chocolate-dark-surface_140725-14559.jpg", imageAlt: "Smooth latte blend coffee"
name: "Silky Latte Blend",
price: "$16.99",
imageSrc: "https://img.b2bpic.net/free-photo/top-view-pancake-inside-round-metal-pan-around-powdered-chocolate-dark-surface_140725-14559.jpg",
imageAlt: "Smooth latte blend coffee"
}, },
{ {
id: "4", id: "4", name: "Premium Green Tea", price: "$12.99", imageSrc: "https://img.b2bpic.net/free-photo/healthy-tea-leaves_53876-90195.jpg", imageAlt: "Traditional green tea leaves"
name: "Premium Green Tea",
price: "$12.99",
imageSrc: "https://img.b2bpic.net/free-photo/healthy-tea-leaves_53876-90195.jpg",
imageAlt: "Traditional green tea leaves"
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
@@ -83,24 +67,21 @@ export default function ProductsPage() {
<FooterBaseReveal <FooterBaseReveal
columns={[ columns={[
{ {
title: "Shop", title: "Shop", items: [
items: [
{ label: "Coffee", href: "#products" }, { label: "Coffee", href: "#products" },
{ label: "Tea", href: "#products" }, { label: "Tea", href: "#products" },
{ label: "Brewing Guides", href: "/about" } { label: "Brewing Guides", href: "/about" }
] ]
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Sustainability", href: "/about" }, { label: "Sustainability", href: "/about" },
{ label: "Contact", href: "/contact" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" }, { label: "Facebook", href: "https://facebook.com" },
{ label: "Newsletter", href: "/contact" } { label: "Newsletter", href: "/contact" }