From 70a1da4d4192f6be71f1a6b5c99ad6bc85b4be60 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 10:17:06 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 162 ++++++++++++++--------------------------------- 1 file changed, 48 insertions(+), 114 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d73785b..6540c02 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,55 +32,33 @@ export default function LandingPage() {
@@ -90,22 +68,14 @@ export default function LandingPage() { textboxLayout="default" gridVariant="four-items-2x2-equal-grid" useInvertedBackground={true} + title="Our Culinary Creations" + description="From traditional nigiri to inventive signature rolls, explore our curated selection." products={[ - { - id: "1", name: "Tuna Sashimi", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-plate-with-fish-clams_23-2148643648.jpg"}, - { - id: "2", name: "Salmon Nigiri", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sushi-rolls-with-eel-avocado-cucumber-with-ginger-wasabi-plate-wood_141793-11686.jpg"}, - { - id: "3", name: "Tempura Maki", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/california-sushi-roll_74190-2901.jpg"}, - { - id: "4", name: "California Roll", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sushi-plate_23-2149964976.jpg"}, - { - id: "5", name: "Spicy Tuna", price: "$13", imageSrc: "http://img.b2bpic.net/free-photo/isolated-sushi-closeup_181624-1350.jpg"}, - { - id: "6", name: "Unagi Eel", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/foie-gras_74190-661.jpg"}, + { id: "1", name: "Signature Dragon Roll", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-set-wooden-table_23-2148785641.jpg" }, + { id: "2", name: "Fresh Salmon Nigiri", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/fresh-sushi-rolls-with-wasabi-ginger-plate_140725-5654.jpg" }, + { id: "3", name: "Spicy Tuna Volcano", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/spicy-tuna-roll-served-on-plate_141793-1870.jpg" }, + { id: "4", name: "Classic California", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/california-roll-isolated_74190-2901.jpg" }, ]} - title="Signature Sushi Selection" - description="Hand-rolled daily using premium fish and organic rice." /> @@ -113,16 +83,13 @@ export default function LandingPage() { @@ -131,20 +98,12 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} + title="Voices of Sushi House" + description="Our guests share their favorite experiences." testimonials={[ - { - id: "1", name: "Alice M.", handle: "@alicem", testimonial: "The best sushi in the city, period!", imageSrc: "http://img.b2bpic.net/free-photo/front-view-women-eating-home_23-2150272458.jpg"}, - { - id: "2", name: "Bob D.", handle: "@bobd", testimonial: "Absolutely fresh and perfectly seasoned.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-handsome-man-holding-her-girlfriend-s-hand_23-2147891265.jpg"}, - { - id: "3", name: "Carol W.", handle: "@carolw", testimonial: "A true culinary experience every time.", imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-near-window-restaurant_23-2147936227.jpg"}, - { - id: "4", name: "David L.", handle: "@davidl", testimonial: "Friendly service and delicious food.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-sushi-soy-sauce_23-2149013618.jpg"}, - { - id: "5", name: "Eve J.", handle: "@evej", testimonial: "My go-to spot for special occasions.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-sushi-park-picnic-nature_169016-21846.jpg"}, + { id: "1", name: "Sarah J.", handle: "@sarahj_sushi", testimonial: "The freshness is unmatched. Simply the best!", imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-sushi-restaurant_23-2148785641.jpg" }, + { id: "2", name: "Mark T.", handle: "@markt_foodie", testimonial: "A truly authentic experience. Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/man-eating-sushi-with-chopsticks_23-2148785641.jpg" }, ]} - title="What Our Guests Say" - description="We pride ourselves on the positive feedback from our patrons." /> @@ -153,74 +112,49 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} + title="By the Numbers" + description="Sushi House milestones and guest favorites." metrics={[ - { - id: "m1", icon: Award, - title: "Years Experience", value: "20+"}, - { - id: "m2", icon: Star, - title: "Daily Happy Guests", value: "500+"}, - { - id: "m3", icon: CheckCircle, - title: "Sourcing Partners", value: "15"}, + { id: "1", icon: Award, title: "Years Crafting", value: "15+" }, + { id: "2", icon: Star, title: "Rolls Crafted", value: "50k+" }, + { id: "3", icon: CheckCircle, title: "Happy Guests", value: "25k+" }, ]} - title="Sushi Zen by Numbers" - description="Years of craft and thousands of smiles." />
); -} +} \ No newline at end of file -- 2.49.1