Update src/app/page.tsx

This commit is contained in:
2026-05-30 14:47:12 +00:00
parent cc682f3cd8
commit 1abedca16a

View File

@@ -32,29 +32,17 @@ export default function LandingPage() {
<NavbarStyleApple <NavbarStyleApple
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "#home"},
id: "#home",
},
{ {
name: "Menu", name: "Menu", id: "#signature-dishes"},
id: "#signature-dishes",
},
{ {
name: "About", name: "About", id: "#about-us"},
id: "#about-us",
},
{ {
name: "Reviews", name: "Reviews", id: "#customer-reviews"},
id: "#customer-reviews",
},
{ {
name: "Gallery", name: "Gallery", id: "#gallery"},
id: "#gallery",
},
{ {
name: "Visit Us", name: "Visit Us", id: "#visit-us"},
id: "#visit-us",
},
]} ]}
brandName="The Welcome Inne" brandName="The Welcome Inne"
/> />
@@ -66,39 +54,23 @@ export default function LandingPage() {
description="Scarborough's Favourite Traditional Seaside Restaurant. Serving freshly prepared British classics, famous fish & chips, homemade desserts, and warm Yorkshire hospitality." description="Scarborough's Favourite Traditional Seaside Restaurant. Serving freshly prepared British classics, famous fish & chips, homemade desserts, and warm Yorkshire hospitality."
buttons={[ buttons={[
{ {
text: "View Menu", text: "View Menu", href: "#signature-dishes"},
href: "#signature-dishes",
},
{ {
text: "Visit Us Today", text: "Visit Us Today", href: "#visit-us"},
href: "#visit-us",
},
]} ]}
slides={[ slides={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/nuggets-french-fries-beautifully-served_23-2148113583.jpg", imageSrc: "http://img.b2bpic.net/free-photo/nuggets-french-fries-beautifully-served_23-2148113583.jpg", imageAlt: "Freshly prepared fish and chips overlooking Scarborough seafront"},
imageAlt: "Freshly prepared fish and chips overlooking Scarborough seafront",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-placed-mashed-potato-garnished-with-shredded-bell-pepper-thyme_141793-2239.jpg", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-placed-mashed-potato-garnished-with-shredded-bell-pepper-thyme_141793-2239.jpg", imageAlt: "Close-up of a cinematic seafood dish"},
imageAlt: "Close-up of a cinematic seafood dish",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/silhouette-people-enjoying-their-time-sunset-cafe-potamos-beach-greece_181624-27427.jpg", imageSrc: "http://img.b2bpic.net/free-photo/silhouette-people-enjoying-their-time-sunset-cafe-potamos-beach-greece_181624-27427.jpg", imageAlt: "Scarborough coast at sunset with restaurant"},
imageAlt: "Scarborough coast at sunset with restaurant",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg", imageAlt: "Warm and welcoming restaurant interior"},
imageAlt: "Warm and welcoming restaurant interior",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/delicious-creamy-cake-with-different-fresh-berries-bright-light-desk-berry-fruit-fresh-sour_140725-32510.jpg", imageSrc: "http://img.b2bpic.net/free-photo/delicious-creamy-cake-with-different-fresh-berries-bright-light-desk-berry-fruit-fresh-sour_140725-32510.jpg", imageAlt: "Assortment of homemade desserts"},
imageAlt: "Assortment of homemade desserts",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/cozy-tea-time_23-2151936758.jpg", imageSrc: "http://img.b2bpic.net/free-photo/cozy-tea-time_23-2151936758.jpg", imageAlt: "Traditional pot of tea with cozy setting"},
imageAlt: "Traditional pot of tea with cozy setting",
},
]} ]}
autoplayDelay={5000} autoplayDelay={5000}
showDimOverlay={true} showDimOverlay={true}
@@ -112,23 +84,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
title: "Freshly Cooked Daily", title: "Freshly Cooked Daily", description: "Enjoy traditional British dishes prepared fresh every day, using the finest local ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-chopping-onion-by-knife-wooden-board_169016-52102.jpg", imageAlt: "Chef preparing fresh ingredients"},
description: "Enjoy traditional British dishes prepared fresh every day, using the finest local ingredients.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-chopping-onion-by-knife-wooden-board_169016-52102.jpg",
imageAlt: "Chef preparing fresh ingredients",
},
{ {
title: "Family Friendly", title: "Family Friendly", description: "A welcoming and relaxed atmosphere, perfect for families to create lasting memories by the sea.", imageSrc: "http://img.b2bpic.net/free-photo/multicultural-family-spending-time-together-table_23-2148467040.jpg", imageAlt: "Happy family dining in a restaurant"},
description: "A welcoming and relaxed atmosphere, perfect for families to create lasting memories by the sea.",
imageSrc: "http://img.b2bpic.net/free-photo/multicultural-family-spending-time-together-table_23-2148467040.jpg",
imageAlt: "Happy family dining in a restaurant",
},
{ {
title: "Dog Friendly", title: "Dog Friendly", description: "Bring your beloved four-legged companions and enjoy a delightful meal together in our designated areas.", imageSrc: "http://img.b2bpic.net/free-photo/view-adorable-chihuahua-dog-house_23-2149880078.jpg", imageAlt: "Dog sitting under a restaurant table"},
description: "Bring your beloved four-legged companions and enjoy a delightful meal together in our designated areas.",
imageSrc: "http://img.b2bpic.net/free-photo/view-adorable-chihuahua-dog-house_23-2149880078.jpg",
imageAlt: "Dog sitting under a restaurant table",
},
]} ]}
title="Experience The Welcome Inne" title="Experience The Welcome Inne"
description="Discover what makes us Scarborough's cherished seaside restaurant, offering delightful experiences for everyone." description="Discover what makes us Scarborough's cherished seaside restaurant, offering delightful experiences for everyone."
@@ -143,47 +103,17 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
id: "fish-chips", id: "fish-chips", name: "Fish & Chips", price: "£14.50", imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-cheese-served-with-lemon_140725-6605.jpg", imageAlt: "Crispy fish and chips with mushy peas"},
name: "Fish & Chips",
price: "£14.50",
imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-cheese-served-with-lemon_140725-6605.jpg",
imageAlt: "Crispy fish and chips with mushy peas",
},
{ {
id: "cod-chips", id: "cod-chips", name: "Cod & Chips", price: "£15.95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fish-chips-with-forks-lemon_23-2148784852.jpg", imageAlt: "Golden battered cod and chips"},
name: "Cod & Chips",
price: "£15.95",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fish-chips-with-forks-lemon_23-2148784852.jpg",
imageAlt: "Golden battered cod and chips",
},
{ {
id: "steak-pie", id: "steak-pie", name: "Homemade Steak Pie", price: "£13.75", imageSrc: "http://img.b2bpic.net/free-photo/delicious-spinach-ricotta-quiche-baked-flaky-crust_9975-124418.jpg", imageAlt: "Traditional homemade steak pie"},
name: "Homemade Steak Pie",
price: "£13.75",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-spinach-ricotta-quiche-baked-flaky-crust_9975-124418.jpg",
imageAlt: "Traditional homemade steak pie",
},
{ {
id: "pot-tea", id: "pot-tea", name: "Traditional Pot of Tea", price: "£3.50", imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-cup-tea-teabag-paper-doily-wooden-background_141793-8421.jpg", imageAlt: "Classic British pot of tea"},
name: "Traditional Pot of Tea",
price: "£3.50",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-cup-tea-teabag-paper-doily-wooden-background_141793-8421.jpg",
imageAlt: "Classic British pot of tea",
},
{ {
id: "desserts", id: "desserts", name: "Homemade Desserts", price: "From £6.00", imageSrc: "http://img.b2bpic.net/free-photo/front-view-chocolate-chips-cake-with-raisins-fruits-white-background-pie-cookie-biscuit-sweet-cake_140725-115586.jpg", imageAlt: "Assortment of homemade desserts"},
name: "Homemade Desserts",
price: "From £6.00",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-chocolate-chips-cake-with-raisins-fruits-white-background-pie-cookie-biscuit-sweet-cake_140725-115586.jpg",
imageAlt: "Assortment of homemade desserts",
},
{ {
id: "apple-crumble", id: "apple-crumble", name: "Apple Crumble", price: "£6.50", imageSrc: "http://img.b2bpic.net/free-photo/red-apples-near-charlotte_23-2147947951.jpg", imageAlt: "Warm apple crumble with custard"},
name: "Apple Crumble",
price: "£6.50",
imageSrc: "http://img.b2bpic.net/free-photo/red-apples-near-charlotte_23-2147947951.jpg",
imageAlt: "Warm apple crumble with custard",
},
]} ]}
title="Our Signature Dishes" title="Our Signature Dishes"
description="Savour the authentic taste of traditional British cuisine, lovingly prepared with fresh ingredients." description="Savour the authentic taste of traditional British cuisine, lovingly prepared with fresh ingredients."
@@ -197,19 +127,13 @@ export default function LandingPage() {
metrics={[ metrics={[
{ {
icon: History, icon: History,
label: "Years of Tradition", label: "Years of Tradition", value: "Decades"},
value: "Decades",
},
{ {
icon: Utensils, icon: Utensils,
label: "Delicious Meals Served", label: "Delicious Meals Served", value: "Thousands"},
value: "Thousands",
},
{ {
icon: Star, icon: Star,
label: "Customer Rating", label: "Customer Rating", value: "4.3★"},
value: "4.3★",
},
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
/> />
@@ -222,45 +146,15 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ {
id: "review-1", id: "review-1", name: "Sarah Johnson", role: "Local Resident", testimonial: "Always excellent home cooked food, great service and great prices.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12690.jpg", imageAlt: "Photo of Sarah Johnson"},
name: "Sarah Johnson",
role: "Local Resident",
testimonial: "Always excellent home cooked food, great service and great prices.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12690.jpg",
imageAlt: "Photo of Sarah Johnson",
},
{ {
id: "review-2", id: "review-2", name: "Michael Chen", role: "Tourist from London", testimonial: "Lovely clean comfortable place to eat with fantastic food. Highly recommend the cod!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-ice-cream_23-2149005364.jpg", imageAlt: "Photo of Michael Chen"},
name: "Michael Chen",
role: "Tourist from London",
testimonial: "Lovely clean comfortable place to eat with fantastic food. Highly recommend the cod!",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-ice-cream_23-2149005364.jpg",
imageAlt: "Photo of Michael Chen",
},
{ {
id: "review-3", id: "review-3", name: "Emily Rodriguez", role: "Family Visitor", testimonial: "Cod and chips cooked to perfection and incredibly friendly staff. A real gem in Scarborough.", imageSrc: "http://img.b2bpic.net/free-photo/joyful-young-bald-call-center-man-wearing-headset-sitting-desk-with-work-tools-pointing-front-isolated-white_141793-84115.jpg", imageAlt: "Photo of Emily Rodriguez"},
name: "Emily Rodriguez",
role: "Family Visitor",
testimonial: "Cod and chips cooked to perfection and incredibly friendly staff. A real gem in Scarborough.",
imageSrc: "http://img.b2bpic.net/free-photo/joyful-young-bald-call-center-man-wearing-headset-sitting-desk-with-work-tools-pointing-front-isolated-white_141793-84115.jpg",
imageAlt: "Photo of Emily Rodriguez",
},
{ {
id: "review-4", id: "review-4", name: "David Kim", role: "Food Blogger", testimonial: "A truly authentic British seaside dining experience. The steak pie was phenomenal!", imageSrc: "http://img.b2bpic.net/free-photo/three-stylish-young-people-having-fun-lunch-cafe-talking-each-other-laughing-jokes_273609-9011.jpg", imageAlt: "Photo of David Kim"},
name: "David Kim",
role: "Food Blogger",
testimonial: "A truly authentic British seaside dining experience. The steak pie was phenomenal!",
imageSrc: "http://img.b2bpic.net/free-photo/three-stylish-young-people-having-fun-lunch-cafe-talking-each-other-laughing-jokes_273609-9011.jpg",
imageAlt: "Photo of David Kim",
},
{ {
id: "review-5", id: "review-5", name: "Olivia Smith", role: "Dog Owner", testimonial: "So lovely to find a dog-friendly spot with such delicious food. Our furry friend loved it too!", imageSrc: "http://img.b2bpic.net/free-photo/picture-cheerful-mixed-race-women-cooperate-together-make-selfie-photo-sharing-social-networks_273609-18144.jpg", imageAlt: "Photo of Olivia Smith"},
name: "Olivia Smith",
role: "Dog Owner",
testimonial: "So lovely to find a dog-friendly spot with such delicious food. Our furry friend loved it too!",
imageSrc: "http://img.b2bpic.net/free-photo/picture-cheerful-mixed-race-women-cooperate-together-make-selfie-photo-sharing-social-networks_273609-18144.jpg",
imageAlt: "Photo of Olivia Smith",
},
]} ]}
title="What Our Visitors Say" title="What Our Visitors Say"
description="Hear from our cherished customers who experienced warm hospitality and delicious food." description="Hear from our cherished customers who experienced warm hospitality and delicious food."
@@ -275,47 +169,17 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
id: "g-1", id: "g-1", name: "Classic Fish & Chips", price: "View Menu", imageSrc: "http://img.b2bpic.net/free-photo/barbecue-with-fried-potatoes-seen-from_1232-994.jpg", imageAlt: "Classic Fish and Chips"},
name: "Classic Fish & Chips",
price: "View Menu",
imageSrc: "http://img.b2bpic.net/free-photo/barbecue-with-fried-potatoes-seen-from_1232-994.jpg",
imageAlt: "Classic Fish and Chips",
},
{ {
id: "g-2", id: "g-2", name: "Warm Interior", price: "Visit Us", imageSrc: "http://img.b2bpic.net/free-photo/vintage-chairs-antique-store_23-2149640752.jpg", imageAlt: "Restaurant Interior"},
name: "Warm Interior",
price: "Visit Us",
imageSrc: "http://img.b2bpic.net/free-photo/vintage-chairs-antique-store_23-2149640752.jpg",
imageAlt: "Restaurant Interior",
},
{ {
id: "g-3", id: "g-3", name: "Dine-In Experience", price: "Book Now", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-medium-shot_23-2149872407.jpg", imageAlt: "Dining Experience"},
name: "Dine-In Experience",
price: "Book Now",
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-medium-shot_23-2149872407.jpg",
imageAlt: "Dining Experience",
},
{ {
id: "g-4", id: "g-4", name: "Afternoon Tea", price: "View Menu", imageSrc: "http://img.b2bpic.net/free-photo/cinnamon-waffles-grey-concrete-table_114579-6684.jpg", imageAlt: "Tea Service"},
name: "Afternoon Tea",
price: "View Menu",
imageSrc: "http://img.b2bpic.net/free-photo/cinnamon-waffles-grey-concrete-table_114579-6684.jpg",
imageAlt: "Tea Service",
},
{ {
id: "g-5", id: "g-5", name: "Homemade Desserts", price: "View Menu", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-cup-tea-light-dark-background_140725-80168.jpg", imageAlt: "Desserts"},
name: "Homemade Desserts",
price: "View Menu",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-cup-tea-light-dark-background_140725-80168.jpg",
imageAlt: "Desserts",
},
{ {
id: "g-6", id: "g-6", name: "Scarborough Coast", price: "Visit Us", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-dock-surrounded-by-stones-leading-sea-sunset_181624-26402.jpg", imageAlt: "Coastal Scarborough Atmosphere"},
name: "Scarborough Coast",
price: "Visit Us",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-dock-surrounded-by-stones-leading-sea-sunset_181624-26402.jpg",
imageAlt: "Coastal Scarborough Atmosphere",
},
]} ]}
title="Gallery of Memories" title="Gallery of Memories"
description="A visual journey through our delicious dishes, welcoming interiors, and the beautiful Scarborough coast." description="A visual journey through our delicious dishes, welcoming interiors, and the beautiful Scarborough coast."
@@ -329,45 +193,15 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
metrics={[ metrics={[
{ {
id: "m-1", id: "m-1", value: "4.3★", title: "Customer Rating", description: "Based on 744+ authentic reviews.", imageSrc: "http://img.b2bpic.net/free-photo/feedback-comment-survey-support-response-bar-word_53876-133787.jpg", imageAlt: "Star rating icon"},
value: "4.3★",
title: "Customer Rating",
description: "Based on 744+ authentic reviews.",
imageSrc: "http://img.b2bpic.net/free-photo/feedback-comment-survey-support-response-bar-word_53876-133787.jpg",
imageAlt: "Star rating icon",
},
{ {
id: "m-2", id: "m-2", value: "1000s+", title: "Meals Served", description: "Delighting palates with traditional British cuisine for years.", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081873.jpg", imageAlt: "Plate of food being served"},
value: "1000s+",
title: "Meals Served",
description: "Delighting palates with traditional British cuisine for years.",
imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081873.jpg",
imageAlt: "Plate of food being served",
},
{ {
id: "m-3", id: "m-3", value: "Always", title: "Dog Friendly", description: "Your furry friends are always welcome in our designated areas.", imageSrc: "http://img.b2bpic.net/free-vector/cute-dog-cat-sleeping-together-cartoon-vector-icon-illustration-animal-nature-icon-concept-isol_138676-5678.jpg", imageAlt: "Dog paw print icon"},
value: "Always",
title: "Dog Friendly",
description: "Your furry friends are always welcome in our designated areas.",
imageSrc: "http://img.b2bpic.net/free-vector/cute-dog-cat-sleeping-together-cartoon-vector-icon-illustration-animal-nature-icon-concept-isol_138676-5678.jpg",
imageAlt: "Dog paw print icon",
},
{ {
id: "m-4", id: "m-4", value: "Always", title: "Family Friendly", description: "A warm and inviting atmosphere for all ages to enjoy.", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-adopted-by-couple_23-2149574119.jpg", imageAlt: "Family icon"},
value: "Always",
title: "Family Friendly",
description: "A warm and inviting atmosphere for all ages to enjoy.",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-adopted-by-couple_23-2149574119.jpg",
imageAlt: "Family icon",
},
{ {
id: "m-5", id: "m-5", value: "Prime", title: "Seafront Location", description: "Enjoy stunning views and easy access to Scarborough's coast.", imageSrc: "http://img.b2bpic.net/free-photo/location-symbol-street-city_23-2149764154.jpg", imageAlt: "Map pin icon over coastal view"},
value: "Prime",
title: "Seafront Location",
description: "Enjoy stunning views and easy access to Scarborough's coast.",
imageSrc: "http://img.b2bpic.net/free-photo/location-symbol-street-city_23-2149764154.jpg",
imageAlt: "Map pin icon over coastal view",
},
]} ]}
title="Why Visitors Love Us" title="Why Visitors Love Us"
description="Our commitment to quality, tradition, and hospitality makes The Welcome Inne a cherished destination." description="Our commitment to quality, tradition, and hospitality makes The Welcome Inne a cherished destination."
@@ -378,25 +212,10 @@ export default function LandingPage() {
<ContactCenter <ContactCenter
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "radial-gradient", variant: "radial-gradient"}}
}}
tag="Plan Your Visit" tag="Plan Your Visit"
title="Experience The Welcome Inne" title="Experience The Welcome Inne"
description="Find us at 22 Sandside, Scarborough YO11 1PE. We look forward to welcoming you!" description="Find us at 22 Sandside, Scarborough YO11 1PE. We look forward to welcoming you!"
buttons={[
{
text: "Get Directions",
href: "https://www.google.com/maps/search/?api=1&query=22+Sandside%2C+Scarborough+YO11+1PE",
},
{
text: "Call Now",
href: "tel:+441723123456",
},
{
text: "Book a Table",
href: "#",
},
]}
/> />
</div> </div>
@@ -407,62 +226,37 @@ export default function LandingPage() {
logoText="The Welcome Inne" logoText="The Welcome Inne"
columns={[ columns={[
{ {
title: "Explore", title: "Explore", items: [
items: [
{ {
label: "Home", label: "Home", href: "#home"},
href: "#home",
},
{ {
label: "Menu", label: "Menu", href: "#signature-dishes"},
href: "#signature-dishes",
},
{ {
label: "About Us", label: "About Us", href: "#about-us"},
href: "#about-us",
},
{ {
label: "Gallery", label: "Gallery", href: "#gallery"},
href: "#gallery",
},
], ],
}, },
{ {
title: "Visit", title: "Visit", items: [
items: [
{ {
label: "Address", label: "Address", href: "https://www.google.com/maps/search/?api=1&query=22+Sandside%2C+Scarborough+YO11+1PE"},
href: "https://www.google.com/maps/search/?api=1&query=22+Sandside%2C+Scarborough+YO11+1PE",
},
{ {
label: "Contact", label: "Contact", href: "#visit-us"},
href: "#visit-us",
},
{ {
label: "Book a Table", label: "Book a Table", href: "#"},
href: "#",
},
{ {
label: "Takeaway", label: "Takeaway", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ {
label: "Facebook", label: "Facebook", href: "#"},
href: "#",
},
{ {
label: "Instagram", label: "Instagram", href: "#"},
href: "#",
},
{ {
label: "TripAdvisor", label: "TripAdvisor", href: "#"},
href: "#",
},
], ],
}, },
]} ]}