diff --git a/src/app/page.tsx b/src/app/page.tsx index 5a5fd6c..273ee11 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,62 +31,26 @@ export default function LandingPage() {
@@ -111,60 +74,10 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={true} products={[ - { - id: "p1", - brand: "Brown & Butter", - name: "Classic Cocoa Brownie", - price: "$45", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-closeup-cookies-glass-plate-table-with-cup-mallows-side_181624-49698.jpg", - }, - { - id: "p2", - brand: "Brown & Butter", - name: "Luxury Cookie Box", - price: "$65", - rating: 5, - reviewCount: "89", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-cupcake-with-cinnamon_23-2148604567.jpg", - }, - { - id: "p3", - brand: "Brown & Butter", - name: "Limited Edition Box", - price: "$95", - rating: 5, - reviewCount: "45", - imageSrc: "http://img.b2bpic.net/free-photo/view-perfectly-organized-bakery-sweets_23-2150168278.jpg", - }, - { - id: "p4", - brand: "Brown & Butter", - name: "Espresso Cookie Set", - price: "$55", - rating: 5, - reviewCount: "67", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-chocolate-cake_23-2148549958.jpg", - }, - { - id: "p5", - brand: "Brown & Butter", - name: "Artisan Brownie Set", - price: "$50", - rating: 5, - reviewCount: "32", - imageSrc: "http://img.b2bpic.net/free-photo/sweet-jaggery-dessert-arrangement_23-2149335575.jpg", - }, - { - id: "p6", - brand: "Brown & Butter", - name: "Signature Gift Box", - price: "$120", - rating: 5, - reviewCount: "156", - imageSrc: "http://img.b2bpic.net/free-photo/jelly-cake-frame-with-copy-space_23-2148536819.jpg", - }, + { id: "p1", brand: "Brown & Butter", name: "Classic Cocoa Brownie", price: "$45", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-closeup-cookies-glass-plate-table-with-cup-mallows-side_181624-49698.jpg" }, + { id: "p2", brand: "Brown & Butter", name: "Luxury Cookie Box", price: "$65", rating: 5, reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cupcake-with-cinnamon_23-2148604567.jpg" }, + { id: "p3", brand: "Brown & Butter", name: "Limited Edition Box", price: "$95", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/view-perfectly-organized-bakery-sweets_23-2150168278.jpg" }, + { id: "p4", brand: "Brown & Butter", name: "Espresso Cookie Set", price: "$55", rating: 5, reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-chocolate-cake_23-2148549958.jpg" }, ]} title="Best Sellers" description="Indulge in our most celebrated creations." @@ -178,24 +91,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} features={[ - { - title: "Premium Ingredients", - description: "Sourced globally for the richest taste.", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-chocolate-cake_23-2148549978.jpg", - imageAlt: "rich chocolate brownie macro", - }, - { - title: "Artisan Craftsmanship", - description: "Hand-crafted batches with obsession to detail.", - imageSrc: "http://img.b2bpic.net/free-photo/sweet-chocolate-cupcake-blue-plate_114579-52066.jpg", - imageAlt: "artisan cookies luxury close up", - }, - { - title: "Luxury Packaging", - description: "Minimalist matte packaging with satin ribbons.", - imageSrc: "http://img.b2bpic.net/free-photo/chocolate-nuts-wood_176420-7438.jpg", - imageAlt: "luxury dessert gift box minimal", - }, + { title: "Premium Ingredients", description: "Sourced globally for the richest taste.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-chocolate-cake_23-2148549978.jpg" }, + { title: "Artisan Craftsmanship", description: "Hand-crafted batches with obsession to detail.", imageSrc: "http://img.b2bpic.net/free-photo/sweet-chocolate-cupcake-blue-plate_114579-52066.jpg" }, + { title: "Luxury Packaging", description: "Minimalist matte packaging with satin ribbons.", imageSrc: "http://img.b2bpic.net/free-photo/chocolate-nuts-wood_176420-7438.jpg" }, ]} title="The Brown & Butter Experience" description="Elevated standards for an elevated taste." @@ -208,21 +106,9 @@ export default function LandingPage() { title="By The Numbers" tag="Our Growth" metrics={[ - { - id: "m1", - value: "10K+", - description: "Satisfied Customers", - }, - { - id: "m2", - value: "500+", - description: "Luxury Gift Boxes Sold", - }, - { - id: "m3", - value: "100%", - description: "Artisan Ingredients", - }, + { id: "m1", value: "10K+", description: "Satisfied Customers" }, + { id: "m2", value: "500+", description: "Luxury Gift Boxes Sold" }, + { id: "m3", value: "100%", description: "Artisan Ingredients" }, ]} metricsAnimation="slide-up" /> @@ -230,44 +116,12 @@ export default function LandingPage() {