Update src/app/shop/page.tsx

This commit is contained in:
2026-01-23 12:39:04 +00:00
parent 4e00847781
commit f1353519c2

View File

@@ -5,6 +5,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import Link from 'next/link';
export default function ShopPage() { export default function ShopPage() {
return ( return (
@@ -30,8 +31,7 @@ export default function ShopPage() {
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Order Now", text: "Order Now", href: "/shop"
href: "/shop"
}} }}
/> />
</div> </div>
@@ -50,54 +50,25 @@ export default function ShopPage() {
<div id="shop-products" data-section="shop-products"> <div id="shop-products" data-section="shop-products">
<ProductCardFour <ProductCardFour
title="All Products" title="All Products"
description="Discover our complete selection of premium flowers and custom arrangements for every special occasion"
products={[ products={[
{ {
id: "1", id: "1", name: "Royal Rose Elegance", price: "$85", variant: "Red Roses • 24 Stems", imageSrc: "https://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005546.jpg", imageAlt: "Red rose bouquet"
name: "Royal Rose Elegance",
price: "$85",
variant: "Red Roses • 24 Stems",
imageSrc: "https://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005546.jpg",
imageAlt: "Red rose bouquet"
}, },
{ {
id: "2", id: "2", name: "Spring Tulip Medley", price: "$65", variant: "Mixed Tulips • 20 Stems", imageSrc: "https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-blue-ribbon-vintage-wooden-background_1220-284.jpg", imageAlt: "Spring tulip arrangement"
name: "Spring Tulip Medley",
price: "$65",
variant: "Mixed Tulips • 20 Stems",
imageSrc: "https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-blue-ribbon-vintage-wooden-background_1220-284.jpg",
imageAlt: "Spring tulip arrangement"
}, },
{ {
id: "3", id: "3", name: "Sunshine Sunflower Delight", price: "$75", variant: "Sunflowers • 15 Stems", imageSrc: "https://img.b2bpic.net/free-photo/bouquet-roses-with-red-bow_23-2147591160.jpg", imageAlt: "Bright sunflower bouquet"
name: "Sunshine Sunflower Delight",
price: "$75",
variant: "Sunflowers • 15 Stems",
imageSrc: "https://img.b2bpic.net/free-photo/bouquet-roses-with-red-bow_23-2147591160.jpg",
imageAlt: "Bright sunflower bouquet"
}, },
{ {
id: "4", id: "4", name: "Exotic Orchid Paradise", price: "$95", variant: "Premium Orchids • 12 Stems", imageSrc: "https://img.b2bpic.net/free-photo/gentle-flowers-bouquet_23-2147694593.jpg", imageAlt: "Exotic orchid arrangement"
name: "Exotic Orchid Paradise",
price: "$95",
variant: "Premium Orchids • 12 Stems",
imageSrc: "https://img.b2bpic.net/free-photo/gentle-flowers-bouquet_23-2147694593.jpg",
imageAlt: "Exotic orchid arrangement"
}, },
{ {
id: "5", id: "5", name: "Romantic Red & White", price: "$90", variant: "Red & White Mix • 30 Stems", imageSrc: "https://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005546.jpg", imageAlt: "Red and white flower arrangement"
name: "Romantic Red & White",
price: "$90",
variant: "Red & White Mix • 30 Stems",
imageSrc: "https://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005546.jpg",
imageAlt: "Red and white flower arrangement"
}, },
{ {
id: "6", id: "6", name: "Garden Fresh Mix", price: "$70", variant: "Seasonal Mix • 25 Stems", imageSrc: "https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-blue-ribbon-vintage-wooden-background_1220-284.jpg", imageAlt: "Garden fresh flower mix"
name: "Garden Fresh Mix",
price: "$70",
variant: "Seasonal Mix • 25 Stems",
imageSrc: "https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-blue-ribbon-vintage-wooden-background_1220-284.jpg",
imageAlt: "Garden fresh flower mix"
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"