From 3c80bb0a3f540abef34e30a3ff3a2f9448338e95 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 04:10:44 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 220 +++++++---------------------------------------- 1 file changed, 33 insertions(+), 187 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b78e0db..410ff4c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TextAbout from '@/components/sections/about/TextAbout'; -import { Clock, Leaf, MapPin, Smile } from "lucide-react"; +import { Clock, Leaf, MapPin, Smile, Coffee, ShoppingBag, Truck } from "lucide-react"; export default function LandingPage() { return ( @@ -30,18 +30,9 @@ export default function LandingPage() { @@ -155,42 +82,12 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={true} products={[ - { - id: "p1", - name: "Brown Sugar Pearl Milk Tea", - price: "₱95", - imageSrc: "http://img.b2bpic.net/free-photo/composition-with-delicious-traditional-thai-tea_23-2148994341.jpg?_wi=1", - }, - { - id: "p2", - name: "Signature Iced Coffee", - price: "₱85", - imageSrc: "http://img.b2bpic.net/free-photo/coffee-ai-generated_23-2150691643.jpg?_wi=1", - }, - { - id: "p3", - name: "Classic Milk Tea", - price: "₱75", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-composition-healthy-breakfast-meal-with-yogurt_23-2148894695.jpg?_wi=1", - }, - { - id: "p4", - name: "Crispy Nachos", - price: "₱60", - imageSrc: "http://img.b2bpic.net/free-photo/teriyaki-chicken-burger_1339-3593.jpg?_wi=1", - }, - { - id: "p5", - name: "Brown Sugar Coffee Latte", - price: "₱99", - imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29628.jpg", - }, - { - id: "p6", - name: "Wintermelon Milk Tea", - price: "₱85", - imageSrc: "http://img.b2bpic.net/free-photo/minimalist-still-life-asian-tea_23-2149709038.jpg", - }, + { id: "p1", name: "Brown Sugar Pearl Milk Tea", price: "₱95", imageSrc: "http://img.b2bpic.net/free-photo/composition-with-delicious-traditional-thai-tea_23-2148994341.jpg" }, + { id: "p2", name: "Signature Iced Coffee", price: "₱85", imageSrc: "http://img.b2bpic.net/free-photo/coffee-ai-generated_23-2150691643.jpg" }, + { id: "p3", name: "Classic Milk Tea", price: "₱75", imageSrc: "http://img.b2bpic.net/free-photo/front-view-composition-healthy-breakfast-meal-with-yogurt_23-2148894695.jpg" }, + { id: "p4", name: "Crispy Nachos", price: "₱60", imageSrc: "http://img.b2bpic.net/free-photo/teriyaki-chicken-burger_1339-3593.jpg" }, + { id: "p5", name: "Brown Sugar Coffee Latte", price: "₱99", imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29628.jpg" }, + { id: "p6", name: "Wintermelon Milk Tea", price: "₱85", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-still-life-asian-tea_23-2149709038.jpg" }, ]} title="Menu Highlights" description="Explore our bestsellers and local favorites." @@ -202,30 +99,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "Dine-in", - description: "Relax in our cozy cafe.", - buttonIcon: "Coffee", - imageSrc: "http://img.b2bpic.net/free-photo/composition-with-delicious-traditional-thai-tea_23-2148994341.jpg?_wi=2", - }, - { - title: "Takeout", - description: "Grab your drinks on the go.", - buttonIcon: "ShoppingBag", - imageSrc: "http://img.b2bpic.net/free-photo/coffee-ai-generated_23-2150691643.jpg?_wi=2", - }, - { - title: "No-Contact Delivery", - description: "Delivered safely to your door.", - buttonIcon: "Truck", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-composition-healthy-breakfast-meal-with-yogurt_23-2148894695.jpg?_wi=2", - }, - { - title: "In-Store Pickup", - description: "Order ahead and pick up easily.", - buttonIcon: "Clock", - imageSrc: "http://img.b2bpic.net/free-photo/teriyaki-chicken-burger_1339-3593.jpg?_wi=2", - }, + { title: "Dine-in", description: "Relax in our cozy cafe.", buttonIcon: Coffee, imageSrc: "http://img.b2bpic.net/free-photo/composition-with-delicious-traditional-thai-tea_23-2148994341.jpg" }, + { title: "Takeout", description: "Grab your drinks on the go.", buttonIcon: ShoppingBag, imageSrc: "http://img.b2bpic.net/free-photo/coffee-ai-generated_23-2150691643.jpg" }, + { title: "No-Contact Delivery", description: "Delivered safely to your door.", buttonIcon: Truck, imageSrc: "http://img.b2bpic.net/free-photo/front-view-composition-healthy-breakfast-meal-with-yogurt_23-2148894695.jpg" }, + { title: "In-Store Pickup", description: "Order ahead and pick up easily.", buttonIcon: Clock, imageSrc: "http://img.b2bpic.net/free-photo/teriyaki-chicken-burger_1339-3593.jpg" }, ]} title="How to Enjoy" description="Whether you want to dine-in or get it delivered, we have you covered." @@ -234,44 +111,15 @@ export default function LandingPage() {