Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a853153c2 | |||
| cdef28222a | |||
| 6ad433e53b |
219
src/app/page.tsx
219
src/app/page.tsx
@@ -29,21 +29,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "menu"},
|
||||||
id: "menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "reviews"},
|
||||||
id: "reviews",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Pizzeria Pisa"
|
brandName="Pizzeria Pisa"
|
||||||
/>
|
/>
|
||||||
@@ -52,66 +44,41 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplit
|
<HeroSplit
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
title="Authentischer Geschmack aus Italien."
|
title="Authentischer Geschmack aus Italien."
|
||||||
description="Erleben Sie die echte italienische Pizzeria-Erfahrung im Herzen von Essen. Frisch zubereitet und direkt zu Ihnen nach Hause geliefert."
|
description="Erleben Sie die echte italienische Pizzeria-Erfahrung im Herzen von Essen. Frisch zubereitet und direkt zu Ihnen nach Hause geliefert."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Speisekarte ansehen",
|
text: "Speisekarte ansehen", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Jetzt bestellen",
|
text: "Jetzt bestellen", href: "https://pisakray.food123.de"},
|
||||||
href: "https://pisakray.food123.de",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/pizza-dough-with-tomato-sauce-cheese-sprinkles-olive-corn-tomato-bell-pepper_141793-1944.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/pizza-dough-with-tomato-sauce-cheese-sprinkles-olive-corn-tomato-bell-pepper_141793-1944.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg",
|
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg", alt: "Kunde 1"},
|
||||||
alt: "Kunde 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg",
|
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg", alt: "Kunde 2"},
|
||||||
alt: "Kunde 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg",
|
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg", alt: "Kunde 3"},
|
||||||
alt: "Kunde 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg",
|
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg", alt: "Kunde 4"},
|
||||||
alt: "Kunde 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg",
|
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg", alt: "Kunde 5"},
|
||||||
alt: "Kunde 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Über 500+ zufriedene Pizzaliebhaber in Essen"
|
avatarText="Über 500+ zufriedene Pizzaliebhaber in Essen"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Frische Zutaten"},
|
||||||
text: "Frische Zutaten",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Traditionelles Handwerk"},
|
||||||
text: "Traditionelles Handwerk",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Schnelle Lieferung"},
|
||||||
text: "Schnelle Lieferung",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Authentischer Ofen"},
|
||||||
text: "Authentischer Ofen",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Beste Qualität"},
|
||||||
text: "Beste Qualität",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -124,59 +91,23 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", brand: "Pizza", name: "Pizza Margherita", price: "8,50 €", rating: 5,
|
||||||
brand: "Pizza",
|
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=1"},
|
||||||
name: "Pizza Margherita",
|
|
||||||
price: "8,50 €",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "120",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", brand: "Pizza", name: "Pizza Salami", price: "9,50 €", rating: 4,
|
||||||
brand: "Pizza",
|
reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=2"},
|
||||||
name: "Pizza Salami",
|
|
||||||
price: "9,50 €",
|
|
||||||
rating: 4,
|
|
||||||
reviewCount: "85",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", brand: "Nudeln", name: "Pasta Carbonara", price: "10,90 €", rating: 5,
|
||||||
brand: "Nudeln",
|
reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=3"},
|
||||||
name: "Pasta Carbonara",
|
|
||||||
price: "10,90 €",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "92",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", brand: "Salate", name: "Großer Salatteller", price: "7,50 €", rating: 4,
|
||||||
brand: "Salate",
|
reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=4"},
|
||||||
name: "Großer Salatteller",
|
|
||||||
price: "7,50 €",
|
|
||||||
rating: 4,
|
|
||||||
reviewCount: "45",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", brand: "Hähnchen", name: "Schnitzel Wiener Art", price: "12,90 €", rating: 5,
|
||||||
brand: "Hähnchen",
|
reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=5"},
|
||||||
name: "Schnitzel Wiener Art",
|
|
||||||
price: "12,90 €",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "67",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=5",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", brand: "Fisch", name: "Lachsfilet vom Grill", price: "15,50 €", rating: 5,
|
||||||
brand: "Fisch",
|
reviewCount: "34", imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=6"},
|
||||||
name: "Lachsfilet vom Grill",
|
|
||||||
price: "15,50 €",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "34",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg?_wi=6",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Unsere Spezialitäten"
|
title="Unsere Spezialitäten"
|
||||||
description="Von traditionellen Pizzen bis hin zu frischen Nudelspezialitäten – für jeden Geschmack das Richtige."
|
description="Von traditionellen Pizzen bis hin zu frischen Nudelspezialitäten – für jeden Geschmack das Richtige."
|
||||||
@@ -188,13 +119,9 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "Tradition in Essen"},
|
||||||
content: "Tradition in Essen",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg"},
|
||||||
src: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -206,40 +133,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah Müller", handle: "@sarah_m", testimonial: "Die beste Pizza in Essen! Immer schnell und heiß geliefert.", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=1"},
|
||||||
name: "Sarah Müller",
|
|
||||||
handle: "@sarah_m",
|
|
||||||
testimonial: "Die beste Pizza in Essen! Immer schnell und heiß geliefert.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Markus K.", handle: "@markus_k", testimonial: "Authentischer Geschmack, sehr empfehlenswert für Familien.", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=2"},
|
||||||
name: "Markus K.",
|
|
||||||
handle: "@markus_k",
|
|
||||||
testimonial: "Authentischer Geschmack, sehr empfehlenswert für Familien.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Elena W.", handle: "@elena_w", testimonial: "Schnelle Lieferung und sehr freundliches Personal.", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=3"},
|
||||||
name: "Elena W.",
|
|
||||||
handle: "@elena_w",
|
|
||||||
testimonial: "Schnelle Lieferung und sehr freundliches Personal.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Tim Fischer", handle: "@tim_f", testimonial: "Super Preis-Leistungs-Verhältnis. Immer wieder gerne!", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=4"},
|
||||||
name: "Tim Fischer",
|
|
||||||
handle: "@tim_f",
|
|
||||||
testimonial: "Super Preis-Leistungs-Verhältnis. Immer wieder gerne!",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Jana Stein", handle: "@jana_s", testimonial: "Kreative Pizzabeläge und sehr frisch.", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=5"},
|
||||||
name: "Jana Stein",
|
|
||||||
handle: "@jana_s",
|
|
||||||
testimonial: "Kreative Pizzabeläge und sehr frisch.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27033.jpg?_wi=5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Was unsere Kunden sagen"
|
title="Was unsere Kunden sagen"
|
||||||
description="Ihre Zufriedenheit steht bei uns an erster Stelle."
|
description="Ihre Zufriedenheit steht bei uns an erster Stelle."
|
||||||
@@ -250,8 +152,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Kontakt"
|
tag="Kontakt"
|
||||||
title="Besuchen Sie uns oder bestellen Sie"
|
title="Besuchen Sie uns oder bestellen Sie"
|
||||||
description="Heinrich-Sense-Weg 29, 45307 Essen. Rufen Sie uns an unter 0201 55872077."
|
description="Heinrich-Sense-Weg 29, 45307 Essen. Rufen Sie uns an unter 0201 55872077."
|
||||||
@@ -264,50 +165,42 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Menü",
|
title: "Menü", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Pizza",
|
label: "Pizza", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Pasta",
|
label: "Pasta", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Salate",
|
label: "Salate", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Service",
|
title: "Service", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Lieferung",
|
label: "Lieferung", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Abholung",
|
label: "Abholung", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Rechtliches",
|
title: "Kontaktinfo", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Impressum",
|
label: "Heinrich-Sense-Weg 29, Essen", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Datenschutz",
|
label: "0201 55872077", href: "tel:+4920155872077"},
|
||||||
href: "#",
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Rechtliches", items: [
|
||||||
|
{
|
||||||
|
label: "Impressum", href: "#"},
|
||||||
|
{
|
||||||
|
label: "Datenschutz", href: "#"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
logoText="Pizzeria Pisa"
|
logoText="Pizzeria Pisa"
|
||||||
|
copyrightText="© 2025 | Pizzeria Pisa"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user