Switch to version 1: modified src/app/page.tsx

This commit is contained in:
2026-03-08 18:10:07 +00:00
parent 8f9dfd2319
commit c3a27846f1

View File

@@ -31,7 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "How Long It Takes", id: "experience" },
{ name: "Experience", id: "experience" },
{ name: "Reviews", id: "testimonials" },
{ name: "Reserve", id: "reservation" }
]}
@@ -49,12 +49,12 @@ export default function LandingPage() {
background={{ variant: "sparkles-gradient" }}
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-thanksgiving-meal_23-2148629543.jpg?_wi=1", imageAlt: "Beautiful Italian dishes and wine" },
{ imageSrc: "http://img.b2bpic.net/free-photo/tomato-cheese-salad-with-pesto-sauce_140725-5951.jpg?_wi=1", imageAlt: "Traditional Italian appetizers" },
{ imageSrc: "http://img.b2bpic.net/free-photo/tomato-cheese-salad-with-pesto-sauce_140725-5951.jpg", imageAlt: "Traditional Italian appetizers" },
{ imageSrc: "http://img.b2bpic.net/free-photo/still-life-wine-carafe-table_23-2149631798.jpg", imageAlt: "Premium Italian wine selection" },
{ imageSrc: "http://img.b2bpic.net/free-photo/table-arrangement-with-flowers-top-view_23-2148966218.jpg?_wi=1", imageAlt: "Cozy restaurant interior" }
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-raw-dough-slices-with-flour-wooden-desk_140725-91103.jpg?_wi=1", imageAlt: "Handmade fresh pasta" },
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-raw-dough-slices-with-flour-wooden-desk_140725-91103.jpg", imageAlt: "Handmade fresh pasta" },
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-caesar-salad-with-crackers-cheese-grater-white-plate_176474-3024.jpg", imageAlt: "Seasonal specialty dishes" },
{ imageSrc: "http://img.b2bpic.net/free-photo/young-friends-having-laugh-together_23-2148395336.jpg?_wi=1", imageAlt: "Friendly and welcoming staff" },
{ imageSrc: "http://img.b2bpic.net/free-photo/old-concrete-cathedral-with-statue_250224-66.jpg?_wi=1", imageAlt: "Museum cultural area location" }
@@ -111,23 +111,23 @@ export default function LandingPage() {
<div id="experience" data-section="experience">
<MetricCardEleven
title="How Long It Takes to Build It"
description="Every dish at Osteria del Museo is prepared with meticulous attention and time-honored techniques. Our commitment to quality means each course is crafted to perfection."
tag="Craftsmanship"
tagIcon={Clock}
title="The Osteria del Museo Experience"
description="A warm, welcoming neighborhood restaurant perfect for dinner after visiting the museum or a casual night out with friends and family"
tag="Atmosphere"
tagIcon={Smile}
tagAnimation="blur-reveal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{
id: "pasta-prep", value: "2-3 hrs", title: "Handmade Pasta", description: "Each batch of fresh pasta is hand-rolled and cut to order, ensuring the perfect texture and consistency.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-raw-dough-slices-with-flour-wooden-desk_140725-91103.jpg?_wi=2", imageAlt: "Handmade fresh pasta preparation"
id: "cozy-interior", value: "Intimate", title: "Cozy Interior", description: "Warm lighting and inviting ambiance create the perfect setting", imageSrc: "http://img.b2bpic.net/free-photo/table-arrangement-with-flowers-top-view_23-2148966218.jpg?_wi=2", imageAlt: "Cozy restaurant interior with warm lighting"
},
{
id: "sauce-simmering", value: "4-6 hrs", title: "Traditional Ragù", description: "Our signature Bolognese simmers slowly for hours, allowing flavors to deepen and meld into perfection.", imageSrc: "http://img.b2bpic.net/free-photo/tomato-cheese-salad-with-pesto-sauce_140725-5951.jpg?_wi=2", imageAlt: "Traditional ragù sauce simmering"
id: "friendly-staff", value: "Genuine", title: "Friendly Staff", description: "Our team treats every guest like family", imageSrc: "http://img.b2bpic.net/free-photo/young-friends-having-laugh-together_23-2148395336.jpg?_wi=2", imageAlt: "Welcoming restaurant staff serving guests"
},
{
id: "risotto-stirring", value: "30-40 min", title: "Creamy Risotto", description: "Each risotto is stirred constantly and prepared fresh to order, creating the perfect creamy consistency.", imageSrc: "http://img.b2bpic.net/free-photo/table-arrangement-with-flowers-top-view_23-2148966218.jpg?_wi=2", imageAlt: "Creamy risotto preparation"
id: "museum-location", value: "Perfect", title: "Cultural District", description: "Located near the museum for an enriching evening", imageSrc: "http://img.b2bpic.net/free-photo/old-concrete-cathedral-with-statue_250224-66.jpg?_wi=2", imageAlt: "Museum cultural area location"
}
]}
/>
@@ -186,7 +186,7 @@ export default function LandingPage() {
title: "Restaurant", items: [
{ label: "About Us", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "How Long It Takes", href: "#experience" },
{ label: "Experience", href: "#experience" },
{ label: "Reserve", href: "#reservation" }
]
},