From 83aee8b5dc6e51ca94f8a836cf748ed1f12294dc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 18:41:18 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 77 ++++++++++++++++-------------------------------- 1 file changed, 26 insertions(+), 51 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4d9facf..2e340fa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,14 +27,10 @@ export default function LandingPage() { @@ -81,15 +71,9 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "1", brand: "Chef's Special", name: "Dragon Chili Chicken", price: "$18", rating: 5, - reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/brazilian-family-enjoying-meal-together_23-2151156211.jpg"}, - { - id: "2", brand: "Stir Fry", name: "Wok-Tossed Hakka Noodles", price: "$14", rating: 5, - reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/uncooked-noodle-nests-blue-bowl_114579-88292.jpg"}, - { - id: "3", brand: "Vegetarian", name: "Schezwan Fried Rice", price: "$13", rating: 4, - reviewCount: "88", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269162.jpg"}, + { id: "1", brand: "Chef's Special", name: "Dragon Chili Chicken", price: "$18", rating: 5, reviewCount: "120", imageSrc: "https://images.unsplash.com/photo-1603133872878-684f2089fb4b?q=80&w=800&h=600" }, + { id: "2", brand: "Stir Fry", name: "Wok-Tossed Hakka Noodles", price: "$14", rating: 5, reviewCount: "95", imageSrc: "https://images.unsplash.com/photo-1585032226651-759b368d7246?q=80&w=800&h=600" }, + { id: "3", brand: "Vegetarian", name: "Schezwan Fried Rice", price: "$13", rating: 4, reviewCount: "88", imageSrc: "https://images.unsplash.com/photo-1596560344102-969d77f80695?q=80&w=800&h=600" }, ]} title="Signature Menu" description="Discover our chef-curated selection of fusion delicacies." @@ -99,16 +83,13 @@ export default function LandingPage() {
@@ -119,26 +100,20 @@ export default function LandingPage() { columns={[ { title: "Menu", items: [ - { - label: "Full Menu", href: "#menu"}, - { - label: "Specials", href: "#menu"}, + { label: "Full Menu", href: "#menu" }, + { label: "Specials", href: "#menu" }, ], }, { title: "Reserve", items: [ - { - label: "Booking", href: "#book"}, - { - label: "Enquiry", href: "#contact"}, + { label: "Booking", href: "#book" }, + { label: "Enquiry", href: "#contact" }, ], }, { title: "Contact", items: [ - { - label: "7289971983", href: "tel:7289971983"}, - { - label: "Email Us", href: "mailto:hello@wokdynasty.com"}, + { label: "7289971983", href: "tel:7289971983" }, + { label: "Email Us", href: "mailto:hello@wokdynasty.com" }, ], }, ]} @@ -147,4 +122,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1