Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-04-29 06:59:57 +00:00

View File

@@ -33,21 +33,13 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "hero"},
{
name: "Über uns",
id: "about",
},
name: "Über uns", id: "about"},
{
name: "Speisekarte",
id: "menu",
},
name: "Speisekarte", id: "menu"},
{
name: "Kontakt",
id: "contact",
},
name: "Kontakt", id: "contact"},
]}
brandName="Seeblick"
/>
@@ -57,92 +49,51 @@ export default function LandingPage() {
<HeroSplitTestimonial
useInvertedBackground={true}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
title="Genuss direkt am See"
description="Erleben Sie gehobene deutsche Küche in atemberaubender Kulisse. Regionale Zutaten, herzliche Gastfreundschaft und ein unvergleichlicher Seeblick warten auf Sie."
testimonials={[
{
name: "Hans Müller",
handle: "@hansm",
testimonial: "Ein wunderbares Erlebnis, das Essen war fantastisch!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-joyful-man-being-glad-hear-old-best-friend-mobile-phone_273609-8929.jpg",
},
name: "Hans Müller", handle: "@hansm", testimonial: "Ein wunderbares Erlebnis, das Essen war fantastisch!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-joyful-man-being-glad-hear-old-best-friend-mobile-phone_273609-8929.jpg"},
{
name: "Maria Schmidt",
handle: "@marias",
testimonial: "Die Lage am See ist unschlagbar.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/middle-age-friends-having-fun-food-festival_23-2149490774.jpg",
},
name: "Maria Schmidt", handle: "@marias", testimonial: "Die Lage am See ist unschlagbar.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/middle-age-friends-having-fun-food-festival_23-2149490774.jpg"},
{
name: "Stefan Bauer",
handle: "@stefb",
testimonial: "Der beste Ort für einen entspannten Abend.",
rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg",
},
name: "Stefan Bauer", handle: "@stefb", testimonial: "Der beste Ort für einen entspannten Abend.", rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg"},
{
name: "Lena K.",
handle: "@lenak",
testimonial: "Hervorragende Küche und exzellenter Service.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/two-happy-cheerful-girl-friends-business-partners-having-fun-lunch-seafood-restaurant_496169-2077.jpg",
},
name: "Lena K.", handle: "@lenak", testimonial: "Hervorragende Küche und exzellenter Service.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/two-happy-cheerful-girl-friends-business-partners-having-fun-lunch-seafood-restaurant_496169-2077.jpg"},
{
name: "Thomas W.",
handle: "@tomw",
testimonial: "Wunderschönes Ambiente direkt am Wasser.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269179.jpg",
},
name: "Thomas W.", handle: "@tomw", testimonial: "Wunderschönes Ambiente direkt am Wasser.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269179.jpg"},
]}
imageSrc="http://img.b2bpic.net/free-photo/wine-glass_1203-3447.jpg"
mediaAnimation="blur-reveal"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/young-couple-sitting-rooftop-restaurant_23-2147891180.jpg",
alt: "Customer profile",
},
src: "http://img.b2bpic.net/free-photo/young-couple-sitting-rooftop-restaurant_23-2147891180.jpg", alt: "Customer profile"},
{
src: "http://img.b2bpic.net/free-photo/blonde-young-woman-looking-man-pouring-drink-glass_23-2147891176.jpg",
alt: "Customer profile",
},
src: "http://img.b2bpic.net/free-photo/blonde-young-woman-looking-man-pouring-drink-glass_23-2147891176.jpg", alt: "Customer profile"},
{
src: "http://img.b2bpic.net/free-photo/young-brunette-woman-is-enjoying-morning-with-cup-hot-drink-book-her-hands-rest-relaxation-concept_169016-10477.jpg",
alt: "Customer profile",
},
src: "http://img.b2bpic.net/free-photo/young-brunette-woman-is-enjoying-morning-with-cup-hot-drink-book-her-hands-rest-relaxation-concept_169016-10477.jpg", alt: "Customer profile"},
{
src: "http://img.b2bpic.net/free-photo/young-people-with-fresh-watermelon_23-2151579221.jpg",
alt: "Customer profile",
},
src: "http://img.b2bpic.net/free-photo/young-people-with-fresh-watermelon_23-2151579221.jpg", alt: "Customer profile"},
{
src: "http://img.b2bpic.net/free-photo/happy-waitress-serving-cocktail-female-customer-sitting-restaurant_23-2147936269.jpg",
alt: "Customer profile",
},
src: "http://img.b2bpic.net/free-photo/happy-waitress-serving-cocktail-female-customer-sitting-restaurant_23-2147936269.jpg", alt: "Customer profile"},
]}
marqueeItems={[
{
type: "text",
text: "Regional",
},
type: "text", text: "Regional"},
{
type: "text",
text: "Frisch",
},
type: "text", text: "Frisch"},
{
type: "text",
text: "Seeblick",
},
type: "text", text: "Seeblick"},
{
type: "text",
text: "Traditionell",
},
type: "text", text: "Traditionell"},
{
type: "text",
text: "Gourmet",
},
type: "text", text: "Gourmet"},
]}
/>
</div>
@@ -154,19 +105,13 @@ export default function LandingPage() {
metrics={[
{
icon: Award,
label: "Jahre Erfahrung",
value: "15+",
},
label: "Jahre Erfahrung", value: "15+"},
{
icon: Leaf,
label: "Regionale Lieferanten",
value: "20+",
},
label: "Regionale Lieferanten", value: "20+"},
{
icon: Coffee,
label: "Zufriedene Gäste",
value: "5000+",
},
label: "Zufriedene Gäste", value: "5000+"},
]}
metricsAnimation="slide-up"
/>
@@ -180,19 +125,13 @@ export default function LandingPage() {
features={[
{
icon: Leaf,
title: "Regional & Frisch",
description: "Wir beziehen unsere Zutaten direkt von Bauern aus der Umgebung.",
},
title: "Regional & Frisch", description: "Wir beziehen unsere Zutaten direkt von Bauern aus der Umgebung."},
{
icon: Waves,
title: "Beste Seelage",
description: "Genießen Sie Ihr Abendessen mit direktem Blick auf das Wasser.",
},
title: "Beste Seelage", description: "Genießen Sie Ihr Abendessen mit direktem Blick auf das Wasser."},
{
icon: Wine,
title: "Hausgebrautes",
description: "Erleben Sie unsere Auswahl an handwerklichen regionalen Bieren.",
},
title: "Hausgebrautes", description: "Erleben Sie unsere Auswahl an handwerklichen regionalen Bieren."},
]}
title="Was uns auszeichnet"
description="Qualität steht bei uns an oberster Stelle."
@@ -201,52 +140,23 @@ export default function LandingPage() {
<div id="menu" data-section="menu">
<ProductCardFour
animationType="blur-reveal"
textboxLayout="split"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Wiener Schnitzel",
price: "24,50 €",
variant: "Klassiker",
imageSrc: "http://img.b2bpic.net/free-photo/top-breaded-chicken-fillet-served-with-french-fries-fried-egg-cherry-tomatoes-plate_140725-12299.jpg",
},
id: "1", name: "Wiener Schnitzel", price: "24,50 €", variant: "Klassiker", imageSrc: "http://img.b2bpic.net/free-photo/top-breaded-chicken-fillet-served-with-french-fries-fried-egg-cherry-tomatoes-plate_140725-12299.jpg"},
{
id: "2",
name: "Seeforelle gebraten",
price: "28,00 €",
variant: "Fisch",
imageSrc: "http://img.b2bpic.net/free-photo/salmon-steak_74190-2765.jpg",
},
id: "2", name: "Seeforelle gebraten", price: "28,00 €", variant: "Fisch", imageSrc: "http://img.b2bpic.net/free-photo/salmon-steak_74190-2765.jpg"},
{
id: "3",
name: "Bayerischer Wurstsalat",
price: "14,50 €",
variant: "Vorspeise",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-vegetables-plate-with-buns-table_141793-12571.jpg",
},
id: "3", name: "Bayerischer Wurstsalat", price: "14,50 €", variant: "Vorspeise", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-vegetables-plate-with-buns-table_141793-12571.jpg"},
{
id: "4",
name: "Apfelstrudel",
price: "8,50 €",
variant: "Dessert",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-epiphany-day-food-with-tableware_23-2148730487.jpg",
},
id: "4", name: "Apfelstrudel", price: "8,50 €", variant: "Dessert", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-epiphany-day-food-with-tableware_23-2148730487.jpg"},
{
id: "5",
name: "Frischer Gartensalat",
price: "12,00 €",
variant: "Vegan",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-fish-fillet-with-herbs-vegetables-sauce-plate_141793-2974.jpg",
},
id: "5", name: "Frischer Gartensalat", price: "12,00 €", variant: "Vegan", imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-fish-fillet-with-herbs-vegetables-sauce-plate_141793-2974.jpg"},
{
id: "6",
name: "Rinderlende vom Grill",
price: "32,00 €",
variant: "Hauptspeise",
imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-decorated-with-vegetables_1303-12325.jpg",
},
id: "6", name: "Rinderlende vom Grill", price: "32,00 €", variant: "Hauptspeise", imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-decorated-with-vegetables_1303-12325.jpg"},
]}
title="Unsere Speisekarte"
description="Klassiker modern interpretiert."
@@ -258,30 +168,15 @@ export default function LandingPage() {
useInvertedBackground={true}
testimonials={[
{
id: "1",
name: "Julia",
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006711.jpg",
},
id: "1", name: "Julia", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006711.jpg"},
{
id: "2",
name: "Markus",
imageSrc: "http://img.b2bpic.net/free-photo/distracted-student-sitting-class_1153-23.jpg",
},
id: "2", name: "Markus", imageSrc: "http://img.b2bpic.net/free-photo/distracted-student-sitting-class_1153-23.jpg"},
{
id: "3",
name: "Petra",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg",
},
id: "3", name: "Petra", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg"},
{
id: "4",
name: "Thomas",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-with-wine_23-2149152917.jpg",
},
id: "4", name: "Thomas", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-with-wine_23-2149152917.jpg"},
{
id: "5",
name: "Lena",
imageSrc: "http://img.b2bpic.net/free-photo/two-happy-african-caucasian-lesbians-enjoying-nice-time-together-lunch-cozy-cafe_273609-9091.jpg",
},
id: "5", name: "Lena", imageSrc: "http://img.b2bpic.net/free-photo/two-happy-african-caucasian-lesbians-enjoying-nice-time-together-lunch-cozy-cafe_273609-9091.jpg"},
]}
cardTitle="Gästestimmen"
cardTag="Bewertungen"
@@ -294,14 +189,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"Seefischerei Huber",
"Biohof Leitner",
"Brauerei am See",
"Obstgarten Mitter",
"Winzerhof Kaiser",
"Bäckerei Krumm",
"Landmetzgerei Weber",
]}
"Seefischerei Huber", "Biohof Leitner", "Brauerei am See", "Obstgarten Mitter", "Winzerhof Kaiser", "Bäckerei Krumm", "Landmetzgerei Weber"]}
title="Unsere Partner"
description="Wir arbeiten stolz mit lokalen Produzenten zusammen."
/>
@@ -312,20 +200,11 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "f1",
title: "Brauche ich eine Reservierung?",
content: "Für das Abendessen empfehlen wir eine Reservierung, besonders am Wochenende.",
},
id: "f1", title: "Brauche ich eine Reservierung?", content: "Für das Abendessen empfehlen wir eine Reservierung, besonders am Wochenende."},
{
id: "f2",
title: "Gibt es Parkplätze?",
content: "Direkt vor dem Restaurant stehen Gästeparkplätze zur Verfügung.",
},
id: "f2", title: "Gibt es Parkplätze?", content: "Direkt vor dem Restaurant stehen Gästeparkplätze zur Verfügung."},
{
id: "f3",
title: "Ist das Restaurant barrierefrei?",
content: "Ja, unser gesamter Gastraum ist barrierefrei zugänglich.",
},
id: "f3", title: "Ist das Restaurant barrierefrei?", content: "Ja, unser gesamter Gastraum ist barrierefrei zugänglich."},
]}
sideTitle="Fragen & Antworten"
faqsAnimation="blur-reveal"
@@ -339,20 +218,12 @@ export default function LandingPage() {
description="Schreiben Sie uns gerne für Reservierungsanfragen oder bei Fragen."
inputs={[
{
name: "name",
type: "text",
placeholder: "Ihr Name",
},
name: "name", type: "text", placeholder: "Ihr Name"},
{
name: "email",
type: "email",
placeholder: "Ihre E-Mail",
},
name: "email", type: "email", placeholder: "Ihre E-Mail"},
]}
textarea={{
name: "message",
placeholder: "Ihre Nachricht (Personenanzahl, Datum, Uhrzeit)",
}}
name: "message", placeholder: "Ihre Nachricht (Personenanzahl, Datum, Uhrzeit)"}}
imageSrc="http://img.b2bpic.net/free-photo/cook-cutting-roasted-meat-wooden-board_23-2148040262.jpg"
/>
</div>
@@ -361,37 +232,23 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Kontakt",
items: [
title: "Kontakt", items: [
{
label: "Seeuferstraße 1",
href: "#",
},
label: "Seeuferstraße 1", href: "#"},
{
label: "82345 Seenähe",
href: "#",
},
label: "82345 Seenähe", href: "#"},
{
label: "info@seeblick-restaurant.de",
href: "mailto:info@seeblick-restaurant.de",
},
label: "info@seeblick-restaurant.de", href: "mailto:info@seeblick-restaurant.de"},
],
},
{
title: "Service",
items: [
title: "Service", items: [
{
label: "Über uns",
href: "#about",
},
label: "Über uns", href: "#about"},
{
label: "Speisekarte",
href: "#menu",
},
label: "Speisekarte", href: "#menu"},
{
label: "Reservierung",
href: "#contact",
},
label: "Reservierung", href: "#contact"},
],
},
]}