Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 21:57:40 +00:00
2 changed files with 92 additions and 84 deletions

View File

@@ -1,50 +1,35 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper";
import { Tag } from "@/components/common/Tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Pizzeria Domenico - Authentic Italian Pizza Schorndorf", description: "Family-owned Italian pizzeria in Schorndorf serving authentic wood-fired pizzas since 1995. Dine in, takeout, and reservations available.", keywords: "pizza, Italian restaurant, Schorndorf, wood-fired, authentic, family-owned", openGraph: {
title: "Pizzeria Domenico - Authentic Italian Pizza", description: "Experience authentic Italian pizza at Pizzeria Domenico in Schorndorf. Family tradition since 1995.", type: "website", siteName: "Pizzeria Domenico", images: [
{
url: "http://img.b2bpic.net/free-photo/composition-tasty-traditional-pizza_23-2148921280.jpg", alt: "Pizzeria Domenico wood-fired pizza"},
],
},
twitter: {
card: "summary_large_image", title: "Pizzeria Domenico - Authentic Italian Pizza", description: "Family-owned pizzeria in Schorndorf with wood-fired authentic Italian pizzas.", images: ["http://img.b2bpic.net/free-photo/composition-tasty-traditional-pizza_23-2148921280.jpg"],
},
};
title: "Pizzeria Domenico - Authentic Italian Pizza in Schorndorf", description: "Family-owned Italian pizzeria in Schorndorf serving authentic wood-fired pizzas since 1995. Reserve your table today!"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<body
className={`${geist.variable} ${geistMono.variable} antialiased`}
>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1397,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -41,25 +41,25 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitKpi
title="Authentic Italian Pizza Since 1995"
description="Welcome to Pizzeria Domenico, where every pizza is crafted with passion using the finest Italian ingredients and traditional wood-fired techniques. Experience the taste of Italy in the heart of Schorndorf."
title="Authentische italienische Pizza seit 1995"
description="Willkommen bei der Pizzeria Domenico, wo jede Pizza mit Leidenschaft aus den besten italienischen Zutaten und traditionellen Holzofentechniken hergestellt wird. Erleben Sie den Geschmack Italiens im Herzen von Schorndorf."
background={{ variant: "plain" }}
kpis={[
{ value: "29+", label: "Years of Excellence" },
{ value: "100%", label: "Fresh Ingredients" },
{ value: "500+", label: "Happy Customers Weekly" },
{ value: "29+", label: "Jahre Exzellenz" },
{ value: "100%", label: "Frische Zutaten" },
{ value: "500+", label: "Glückliche Kunden Wöchentlich" },
]}
enableKpiAnimation={true}
tag="Family-Owned Restaurant"
tag="Familiengeführtes Restaurant"
tagIcon={Heart}
tagAnimation="slide-up"
buttons={[
{ text: "Reserve a Table", href: "#contact" },
{ text: "View Menu", href: "#products" },
{ text: "Tisch Reservieren", href: "#contact" },
{ text: "Menü Ansehen", href: "#products" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/composition-tasty-traditional-pizza_23-2148921280.jpg"
imageAlt="Wood-fired pizza oven at Pizzeria Domenico"
imageAlt="Holzbefeuerter Pizzaofen in der Pizzeria Domenico"
mediaAnimation="slide-up"
imagePosition="right"
/>
@@ -67,18 +67,18 @@ export default function LandingPage() {
<div id="about" data-section="about">
<MetricSplitMediaAbout
title="A Legacy of Italian Culinary Passion"
description="Founded by Domenico Rossi in 1995, our pizzeria has been a cornerstone of authentic Italian cuisine in Schorndorf. We honor traditional recipes passed down through generations while embracing the warmth and community spirit that defines our restaurant."
title="Ein Erbe italienischer kulinarischer Leidenschaft"
description="Die 1995 von Domenico Rossi gegründete Pizzeria ist seit vielen Jahren ein Eckpfeiler der authentischen italienischen Küche in Schorndorf. Wir ehren traditionelle Rezepte, die über Generationen weitergegeben wurden, während wir die Wärme und den Gemeinschaftsgeist verkörpern, die unser Restaurant definieren."
metrics={[
{ value: "29+", title: "Years of Tradition" },
{ value: "12", title: "Award-Winning Pizzas" },
{ value: "29+", title: "Jahre Tradition" },
{ value: "12", title: "Preisgekrönte Pizzas" },
]}
useInvertedBackground={false}
tag="Our Story"
tag="Unsere Geschichte"
tagIcon={Building2}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/front-view-female-cook-holding-dough-dark-dough-egg-job-bakery-hotcake-pastry-kitchen-cuisine_179666-43848.jpg"
imageAlt="Domenico at the pizzeria"
imageAlt="Domenico in der Pizzeria"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
@@ -88,22 +88,34 @@ export default function LandingPage() {
<ProductCardFour
products={[
{
id: "1", name: "Pizza Margherita", price: "€12.50", variant: "Classic San Marzano Tomato", imageSrc: "http://img.b2bpic.net/free-photo/mixed-pizza-with-sausages-tomato_140725-3789.jpg", imageAlt: "Fresh margherita pizza"},
id: "1", name: "Pizza Margherita", price: "€12,50", variant: "Klassisch - San Marzano Tomate", imageSrc: "http://img.b2bpic.net/free-photo/mixed-pizza-with-sausages-tomato_140725-3789.jpg", imageAlt: "Frische Margherita-Pizza"
},
{
id: "2", name: "Pizza Quattro Formaggi", price: "€15.00", variant: "Four Cheese Blend Premium", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-italian-food-composition_23-2148601628.jpg", imageAlt: "Quattro formaggi pizza"},
id: "2", name: "Pizza Quattro Formaggi", price: "€15,00", variant: "Vier-Käse-Mischung - Premium", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-italian-food-composition_23-2148601628.jpg", imageAlt: "Quattro Formaggi Pizza"
},
{
id: "3", name: "Pizza Pepperoni", price: "€13.50", variant: "Authentic Pepperoni Fresh", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-preparing-pizza_23-2150235791.jpg", imageAlt: "Classic pepperoni pizza"},
id: "3", name: "Pizza Peperoni", price: "€13,50", variant: "Authentisches Peperoni - Frisch", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-preparing-pizza_23-2150235791.jpg", imageAlt: "Klassische Peperoni-Pizza"
},
{
id: "4", name: "Pizza Diavola", price: "€14,00", variant: "Würzig - Mit Chili und Peperoni", imageSrc: "http://img.b2bpic.net/free-photo/mixed-pizza-with-sausages-tomato_140725-3789.jpg", imageAlt: "Würzige Diavola-Pizza"
},
{
id: "5", name: "Pizza Vegetariana", price: "€13,00", variant: "Frisches Gemüse - Saisonal", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-italian-food-composition_23-2148601628.jpg", imageAlt: "Vegetarische Pizza"
},
{
id: "6", name: "Pizza Prosciutto e Rucola", price: "€14,50", variant: "Schinken und Rucola - Elegant", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-preparing-pizza_23-2150235791.jpg", imageAlt: "Prosciutto und Rucola Pizza"
},
]}
title="Our Signature Pizzas"
description="Each pizza is handcrafted and baked in our traditional wood-fired oven at 350°C. We use only the finest imported Italian ingredients and organic toppings for an authentic taste."
tag="Menu Highlights"
title="Unser Menü - Mezze und Spezialitäten"
description="Jede Pizza wird von Hand zubereitet und in unserem traditionellen Holzofen bei 350°C gebacken. Wir verwenden nur die feinsten importierten italienischen Zutaten und biologische Beläge für einen authentischen Geschmack. Unsere Mezze-Auswahl bietet traditionelle italienische Vorspeisen, die perfekt zum Teilen sind."
tag="Menü Highlights"
tagIcon={UtensilsCrossed}
tagAnimation="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
gridVariant="bento-grid"
animationType="slide-up"
useInvertedBackground={true}
buttons={[{ text: "See Full Menu", href: "#" }]}
buttons={[{ text: "Vollständiges Menü Ansehen", href: "#" }]}
buttonAnimation="slide-up"
/>
</div>
@@ -112,24 +124,36 @@ export default function LandingPage() {
<TestimonialCardOne
testimonials={[
{
id: "1", name: "Marco Benedetti", role: "Local Food Critic", company: "Schorndorf Gazette", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-restaurant_23-2148006627.jpg", imageAlt: "Marco Benedetti"},
id: "1", name: "Marco Benedetti", role: "Lokaler Lebensmittelkritiker", company: "Schorndorf Gazette", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-restaurant_23-2148006627.jpg", imageAlt: "Marco Benedetti"
},
{
id: "2", name: "Sarah Mueller", role: "Regular Customer", company: "Food Enthusiast", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-staff-airport-terminal_107420-85049.jpg", imageAlt: "Sarah Mueller"},
id: "2", name: "Sarah Mueller", role: "Stammgast", company: "Lebensmittel-Enthusiast", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-staff-airport-terminal_107420-85049.jpg", imageAlt: "Sarah Mueller"
},
{
id: "3", name: "Klaus Schmidt", role: "Restaurant Owner", company: "Local Business Association", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg", imageAlt: "Klaus Schmidt"},
id: "3", name: "Klaus Schmidt", role: "Restaurantbesitzer", company: "Lokaler Geschäftsverband", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg", imageAlt: "Klaus Schmidt"
},
{
id: "4", name: "Lucia Ferrari", role: "Chef", company: "Culinary Academy", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-studio_23-2150172214.jpg", imageAlt: "Lucia Ferrari"},
id: "4", name: "Lucia Ferrari", role: "Chef", company: "Kulinarische Akademie", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-studio_23-2150172214.jpg", imageAlt: "Lucia Ferrari"
},
{
id: "5", name: "Giovanni Rossi", role: "Weinkenner", company: "Italienisches Weinzentrum", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-restaurant_23-2148006627.jpg", imageAlt: "Giovanni Rossi"
},
{
id: "6", name: "Andrea König", role: "Veranstaltungsplaner", company: "Hochzeitsservices Schorndorf", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-staff-airport-terminal_107420-85049.jpg", imageAlt: "Andrea König"
},
]}
title="What Our Customers Say"
description="Our guests consistently praise the authentic flavors, warm hospitality, and exceptional dining experience at Pizzeria Domenico."
tag="Testimonials"
title="Was unsere Kunden sagen"
description="Unsere Gäste loben ständig die authentischen Geschmacksnoten, die warme Gastfreundschaft und das außergewöhnliche Speiseerlebnis in der Pizzeria Domenico. Ihre Bewertungen und Erfahrungen sind das Herz unseres Erfolgs."
tag="Kundenbewertungen"
tagIcon={Star}
tagAnimation="slide-up"
gridVariant="uniform-all-items-equal"
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -138,14 +162,14 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
tag="Get in Touch"
tag="Kontaktieren Sie uns"
tagIcon={Phone}
tagAnimation="slide-up"
title="Ready for an Unforgettable Italian Evening?"
description="Reserve your table at Pizzeria Domenico today. We're located in the heart of Schorndorf and open Tuesday through Sunday. Groups and special occasions are always welcome."
title="Bereit für einen unvergesslichen italienischen Abend?"
description="Reservieren Sie Ihren Tisch in der Pizzeria Domenico noch heute. Wir befinden uns im Herzen von Schorndorf und sind Dienstag bis Sonntag geöffnet. Gruppen und spezielle Anlässe sind immer willkommen. Unsere Adresse: Hauptstrasse 45, 73614 Schorndorf. Telefon: +49 7181 XXXXXXX. Öffnungszeiten: Dienstag - Sonntag 11:00 - 23:00 Uhr, Montags geschlossen."
buttons={[
{ text: "Call to Reserve", href: "tel:+49718XXXXXXX" },
{ text: "Visit Us", href: "#" },
{ text: "Anrufen für Reservierung", href: "tel:+49718XXXXXXX" },
{ text: "Besuchen Sie uns", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
@@ -156,26 +180,26 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-italian-pizza-table_23-2148305641.jpg"
imageAlt="Pizzeria Domenico cozy interior"
imageAlt="Gemütlicher Innenraum der Pizzeria Domenico"
columns={[
{
title: "Restaurant", items: [
{ label: "About Us", href: "#about" },
{ label: "Menu", href: "#products" },
{ label: "Our Story", href: "#about" },
{ label: "Reservations", href: "#contact" },
{ label: "Über uns", href: "#about" },
{ label: "Menü", href: "#products" },
{ label: "Unsere Geschichte", href: "#about" },
{ label: "Reservierungen", href: "#contact" },
],
},
{
title: "Contact", items: [
{ label: "Schorndorf 73614", href: "#" },
{ label: "Phone: +49 7181 XXXXXXX", href: "tel:+49718XXXXXXX" },
{ label: "Open: Tue-Sun 11am-11pm", href: "#" },
{ label: "Closed Mondays", href: "#" },
title: "Kontakt", items: [
{ label: "Hauptstrasse 45, 73614 Schorndorf", href: "#" },
{ label: "Telefon: +49 7181 XXXXXXX", href: "tel:+49718XXXXXXX" },
{ label: "Geöffnet: Di-So 11:00-23:00 Uhr", href: "#" },
{ label: "Montag geschlossen", href: "#" },
],
},
{
title: "Follow", items: [
title: "Folgen Sie uns", items: [
{ label: "Facebook", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Google Maps", href: "#" },
@@ -184,7 +208,7 @@ export default function LandingPage() {
},
]}
logoText="Pizzeria Domenico"
copyrightText="© 2025 Pizzeria Domenico. All rights reserved."
copyrightText="© 2025 Pizzeria Domenico. Alle Rechte vorbehalten."
/>
</div>
</ThemeProvider>