From be79a1bcd1e96c32de33278b7b3e1f7f85ac2cba Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 23:47:18 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 68 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 51 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a6502c4..2ca55ec 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { ChefHat, Heart, MapPin, Sparkles } from "lucide-react"; +import { ChefHat, Heart, MapPin, Sparkles, Clock, Phone } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; @@ -51,13 +51,16 @@ export default function LandingPage() { testimonials={[ { name: "Sarah Mitchell", handle: "Portland, Oregon", testimonial: "We travel hours to eat at Cafe Gemma. The food and experience are always superb.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=1"}, + imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=1" + }, { name: "James Chen", handle: "San Francisco, California", testimonial: "10 out of 5 stars from start to finish. Every detail is perfection.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-attractive-woman-elegant-hotel-cafeteria_657883-401.jpg?_wi=1"}, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-attractive-woman-elegant-hotel-cafeteria_657883-401.jpg?_wi=1" + }, { name: "Elena Rodriguez", handle: "Seattle, Washington", testimonial: "Authentic Italian food tucked away in Port Orford. Worth the journey.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517405.jpg?_wi=1"}, + imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517405.jpg?_wi=1" + }, ]} buttons={[ { text: "Reserve a Table", href: "#contact" }, @@ -67,6 +70,24 @@ export default function LandingPage() { buttonAnimation="slide-up" useInvertedBackground={false} /> +
+
+
+ + Port Orford, Oregon +
+
+
+ + Dinner Wed-Sun, 5-10 PM +
+
+
+ + Reservations Recommended +
+
+
@@ -74,7 +95,8 @@ export default function LandingPage() { title="Trusted by Travelers & Food Enthusiasts" description="Guests from across the country choose Cafe Gemma for an unforgettable dining experience" names={[ - "Local Oregon Favorite", "Award-Winning Cuisine", "Family-Owned Since Day One", "Fresh Handmade Daily", "Chef-Driven Excellence", "Reservation Essential", "Hidden Coastal Treasure"]} + "Local Oregon Favorite", "Award-Winning Cuisine", "Family-Owned Since Day One", "Fresh Handmade Daily", "Chef-Driven Excellence", "Reservation Essential", "Hidden Coastal Treasure" + ]} textboxLayout="default" useInvertedBackground={true} showCard={true} @@ -107,13 +129,17 @@ export default function LandingPage() { tagAnimation="slide-up" products={[ { - id: "1", name: "Fresh Handmade Pasta", price: "Market Price", variant: "Classic Italian Pastas Crafted Daily", imageSrc: "http://img.b2bpic.net/free-photo/pasta-dish-with-beer_23-2148149203.jpg?_wi=1", imageAlt: "Cacio e pepe bucatini pasta"}, + id: "1", name: "Fresh Handmade Pasta", price: "Market Price", variant: "Classic Italian Pastas Crafted Daily", imageSrc: "http://img.b2bpic.net/free-photo/pasta-dish-with-beer_23-2148149203.jpg?_wi=1", imageAlt: "Cacio e pepe bucatini pasta" + }, { - id: "2", name: "Cacio e Pepe Bucatini", price: "Market Price", variant: "Rich, Creamy, Peppery Perfection", imageSrc: "http://img.b2bpic.net/free-photo/pasta-dish-with-beer_23-2148149203.jpg?_wi=2", imageAlt: "Elegant cacio e pepe preparation"}, + id: "2", name: "Cacio e Pepe Bucatini", price: "Market Price", variant: "Rich, Creamy, Peppery Perfection", imageSrc: "http://img.b2bpic.net/free-photo/pasta-dish-with-beer_23-2148149203.jpg?_wi=2", imageAlt: "Elegant cacio e pepe preparation" + }, { - id: "3", name: "Goat Cheese & Leek Ravioli", price: "Market Price", variant: "Customer Favorite, Silky Filling", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-blue-plate-with-delicious-pasta-meal-served-with-tomato-meat-tan-color-towel-dinner-different-spices_140725-143897.jpg", imageAlt: "Artisanal goat cheese and leek ravioli"}, + id: "3", name: "Goat Cheese & Leek Ravioli", price: "Market Price", variant: "Customer Favorite, Silky Filling", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-blue-plate-with-delicious-pasta-meal-served-with-tomato-meat-tan-color-towel-dinner-different-spices_140725-143897.jpg", imageAlt: "Artisanal goat cheese and leek ravioli" + }, { - id: "4", name: "Chocolate Pistachio Cheesecake", price: "Market Price", variant: "Dessert Guests Talk About For Months", imageSrc: "http://img.b2bpic.net/free-photo/top-view-homemade-traditional-cake_23-2148395151.jpg", imageAlt: "Gourmet chocolate pistachio cheesecake"}, + id: "4", name: "Chocolate Pistachio Cheesecake", price: "Market Price", variant: "Dessert Guests Talk About For Months", imageSrc: "http://img.b2bpic.net/free-photo/top-view-homemade-traditional-cake_23-2148395151.jpg", imageAlt: "Gourmet chocolate pistachio cheesecake" + }, ]} textboxLayout="default" gridVariant="uniform-all-items-equal" @@ -132,16 +158,20 @@ export default function LandingPage() { features={[ { id: "1", title: "Everything Made From Scratch", tags: ["Authentic", "Family Recipes"], - imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cutting-dough-kitchen_23-2148296891.jpg", imageAlt: "Fresh ingredient preparation in kitchen"}, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cutting-dough-kitchen_23-2148296891.jpg", imageAlt: "Fresh ingredient preparation in kitchen" + }, { id: "2", title: "Thoughtful Wine Pairings", tags: ["Expert Selection", "Staff Curated"], - imageSrc: "http://img.b2bpic.net/free-photo/senior-couples-together-luxurious-restaurant_23-2150517427.jpg", imageAlt: "Wine selection for dining experience"}, + imageSrc: "http://img.b2bpic.net/free-photo/senior-couples-together-luxurious-restaurant_23-2150517427.jpg", imageAlt: "Wine selection for dining experience" + }, { id: "3", title: "Cozy, Home-Style Atmosphere", tags: ["Warm Welcome", "Intimate"], - imageSrc: "http://img.b2bpic.net/free-photo/table-setting_74190-2377.jpg?_wi=2", imageAlt: "Welcoming restaurant interior ambiance"}, + imageSrc: "http://img.b2bpic.net/free-photo/table-setting_74190-2377.jpg?_wi=2", imageAlt: "Welcoming restaurant interior ambiance" + }, { id: "4", title: "Slow Dining Experience", tags: ["Worth the Wait", "Handcrafted"], - imageSrc: "http://img.b2bpic.net/free-photo/delicious-customs-food-plate_52683-91623.jpg?_wi=2", imageAlt: "Candlelit dining moment"}, + imageSrc: "http://img.b2bpic.net/free-photo/delicious-customs-food-plate_52683-91623.jpg?_wi=2", imageAlt: "Candlelit dining moment" + }, ]} animationType="slide-up" textboxLayout="default" @@ -158,16 +188,20 @@ export default function LandingPage() { testimonials={[ { id: "1", name: "Marcus Johnson", role: "Salt Lake City", company: "Utah", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=2"}, + imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=2" + }, { id: "2", name: "Sophie Laurent", role: "Culinary Enthusiast", company: "San Francisco", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-attractive-woman-elegant-hotel-cafeteria_657883-401.jpg?_wi=2"}, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-attractive-woman-elegant-hotel-cafeteria_657883-401.jpg?_wi=2" + }, { id: "3", name: "David Walsh", role: "Food Writer", company: "Portland", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517405.jpg?_wi=2"}, + imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517405.jpg?_wi=2" + }, { id: "4", name: "Isabella Rossi", role: "Chef", company: "Seattle", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-with-look-one-side_1139-507.jpg"}, + imageSrc: "http://img.b2bpic.net/free-photo/woman-with-look-one-side_1139-507.jpg" + }, ]} kpiItems={[ { value: "15+", label: "Hour Journey Worth It" }, -- 2.49.1