Merge version_1 into main #2
@@ -2,10 +2,10 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Pizzeria Amico"
|
||||
button={{ text: "Bestellen", href: "/menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -50,101 +39,15 @@ export default function LandingPage() {
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Über Pizzeria Amico"
|
||||
description="Bei Pizzeria Amico glauben wir, dass Pizza sich wie ein Stück Zuhause anfühlen sollte. Mit viel Leidenschaft für italienische Tradition bringen wir echte mediterrane Lebensfreude in die Stadt."
|
||||
metrics={[
|
||||
{
|
||||
value: "10+",
|
||||
title: "Jahre Erfahrung",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
title: "Frische Zutaten",
|
||||
},
|
||||
{
|
||||
value: "Herz",
|
||||
title: "Familientradition",
|
||||
},
|
||||
]}
|
||||
description="Bei Pizzeria Amico glauben wir, dass Pizza sich wie ein Stück Zuhause anfühlen sollte."
|
||||
metrics={[{ value: "10+", title: "Jahre" }, { value: "100%", title: "Frisch" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-preparing-food_23-2150279881.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Unsere Geschichte"
|
||||
description="Vom kleinen Familienbetrieb zur beliebten lokalen Institution – Pizzeria Amico steht für Leidenschaft."
|
||||
showStepNumbers={false}
|
||||
features={[
|
||||
{
|
||||
title: "Der Anfang",
|
||||
description: "Gegründet mit einem alten Ofen und viel Träumen.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27030.jpg",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-sprinkling-flour-dough_23-2148296916.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134252.jpg?_wi=3",
|
||||
imageAlt: "Chef in a white uniform prepare a pizzaa",
|
||||
},
|
||||
{
|
||||
title: "Unsere Community",
|
||||
description: "Wachsen zusammen mit unseren geschätzten Gästen.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27034.jpg",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-zucchini_23-2149298077.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-fresh-cheese_23-2150096953.jpg?_wi=2",
|
||||
imageAlt: "Chef in a white uniform prepare a pizzaa",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt",
|
||||
items: [
|
||||
{
|
||||
label: "Musterstraße 123",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "0123 456789",
|
||||
href: "tel:0123456789",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Öffnungszeiten",
|
||||
items: [
|
||||
{
|
||||
label: "Mo-So: 11-22 Uhr",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Kontakt", items: [{ label: "Musterstraße 123", href: "#" }] }]}
|
||||
logoText="Pizzeria Amico"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -25,101 +24,29 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Pizzeria Amico"
|
||||
button={{ text: "Bestellen", href: "/menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Kontakt"
|
||||
title="Kontaktieren Sie uns"
|
||||
description="Haben Sie Fragen oder Wünsche? Wir sind für Sie da."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Sie finden uns hier"
|
||||
description="Besuchen Sie unser Restaurant in zentraler Lage. Wir freuen uns darauf, Sie bald persönlich zu begrüßen."
|
||||
metrics={[
|
||||
{
|
||||
value: "Mitte",
|
||||
title: "Lage",
|
||||
},
|
||||
{
|
||||
value: "Nah",
|
||||
title: "ÖPNV",
|
||||
},
|
||||
{
|
||||
value: "Kostenlos",
|
||||
title: "Parken",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976549.jpg"
|
||||
description="Haben Sie Fragen oder Wünsche?"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt",
|
||||
items: [
|
||||
{
|
||||
label: "Musterstraße 123",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "0123 456789",
|
||||
href: "tel:0123456789",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Öffnungszeiten",
|
||||
items: [
|
||||
{
|
||||
label: "Mo-So: 11-22 Uhr",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Kontakt", items: [{ label: "Musterstraße 123", href: "#" }] }]}
|
||||
logoText="Pizzeria Amico"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
@@ -25,24 +24,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Pizzeria Amico"
|
||||
button={{ text: "Bestellen", href: "/menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -53,116 +41,18 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "Pizza Margherita",
|
||||
price: "9,90 €",
|
||||
variant: "Pizza",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/italian-fast-food-pizza-with-full-vegetables-greenery_114579-1960.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Pasta Carbonara",
|
||||
price: "10,90 €",
|
||||
variant: "Pasta",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-peppers-olives-cheese_501050-832.jpg",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
name: "Cheeseburger",
|
||||
price: "11,90 €",
|
||||
variant: "Burger",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-pizza-with-zucchini-tomato-peppers-mushrooms_123827-22011.jpg",
|
||||
},
|
||||
{
|
||||
id: "m4",
|
||||
name: "Gemischter Salat",
|
||||
price: "7,50 €",
|
||||
variant: "Salate",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-enjoying-delicious-pizza_23-2149028530.jpg",
|
||||
},
|
||||
{
|
||||
id: "m5",
|
||||
name: "Tiramisu",
|
||||
price: "6,50 €",
|
||||
variant: "Dessert",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-wooden-cutting-board-left-side-isolated-dark-surface-with-free-space-close-up-shot_179666-42209.jpg",
|
||||
},
|
||||
{
|
||||
id: "m6",
|
||||
name: "Spezi 0,5l",
|
||||
price: "3,50 €",
|
||||
variant: "Getränke",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-pizza_23-2151946406.jpg",
|
||||
},
|
||||
{ id: "m1", name: "Pizza Margherita", price: "9,90 €", variant: "Pizza", imageSrc: "http://img.b2bpic.net/free-photo/italian-fast-food-pizza-with-full-vegetables-greenery_114579-1960.jpg" },
|
||||
{ id: "m2", name: "Pasta Carbonara", price: "10,90 €", variant: "Pasta", imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-peppers-olives-cheese_501050-832.jpg" },
|
||||
{ id: "m3", name: "Cheeseburger", price: "11,90 €", variant: "Burger", imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-pizza-with-zucchini-tomato-peppers-mushrooms_123827-22011.jpg" }
|
||||
]}
|
||||
title="Unsere Speisekarte"
|
||||
description="Wähle aus unseren köstlichen italienischen Spezialitäten."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Unsere Philosophie"
|
||||
description="Jede Pizza auf unserer Karte ist handgefertigt und basiert auf Familienrezepten, die über Generationen verfeinert wurden."
|
||||
metrics={[
|
||||
{
|
||||
value: "48h",
|
||||
title: "Teigruhe",
|
||||
},
|
||||
{
|
||||
value: "DOP",
|
||||
title: "Qualitätskäse",
|
||||
},
|
||||
{
|
||||
value: "Hand",
|
||||
title: "Geformt",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-ingredients-arrangement_23-2149707912.jpg"
|
||||
description="Köstliche Spezialitäten."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt",
|
||||
items: [
|
||||
{
|
||||
label: "Musterstraße 123",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "0123 456789",
|
||||
href: "tel:0123456789",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Öffnungszeiten",
|
||||
items: [
|
||||
{
|
||||
label: "Mo-So: 11-22 Uhr",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Kontakt", items: [{ label: "Musterstraße 123", href: "#" }] }]}
|
||||
logoText="Pizzeria Amico"
|
||||
/>
|
||||
</div>
|
||||
|
||||
268
src/app/page.tsx
268
src/app/page.tsx
@@ -29,67 +29,24 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Pizzeria Amico"
|
||||
button={{ text: "Bestellen", href: "/menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Echte italienische Pizza. Mit Herz gemacht."
|
||||
description="Frische Zutaten. Schnelle Lieferung. Von Einheimischen geliebt."
|
||||
tag="Authentisch & Frisch"
|
||||
buttons={[
|
||||
{
|
||||
text: "Jetzt bestellen",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
text: "Speisekarte ansehen",
|
||||
href: "/menu",
|
||||
},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134252.jpg?_wi=1",
|
||||
imageAlt: "Fire oven pizza",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134249.jpg",
|
||||
imageAlt: "Chef preparing pizza",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-pizza-wood-fired-oven_23-2150134280.jpg",
|
||||
imageAlt: "Baking pizza in wood fired oven",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/italian-chef-is-putting-gourmet-freshly-made-pizza-stone-oven_613910-14667.jpg",
|
||||
imageAlt: "Italian chef is putting gourmet freshly made pizza to the stone oven.",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134259.jpg",
|
||||
imageAlt: "Baking delicious pizza with wood fired oven",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Jetzt bestellen", href: "/menu" }, { text: "Speisekarte ansehen", href: "/menu" }]}
|
||||
mediaItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134252.jpg", imageAlt: "Fire oven pizza" }, { imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134249.jpg", imageAlt: "Chef preparing pizza" }]}
|
||||
rating={5}
|
||||
ratingText="Beliebt bei über 100+ Kunden"
|
||||
/>
|
||||
@@ -102,47 +59,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Steinofen-gebacken",
|
||||
description: "Traditionell für den perfekten knusprigen Boden.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-fresh-cheese_23-2150096953.jpg?_wi=1",
|
||||
imageAlt: "margherita pizza rustic table top view",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-delicious-pizza-with-fresh-red-tomatoes-dark-salad-food-dough-cake-color-photo-fast-food_140725-160918.jpg",
|
||||
imageAlt: "salami pizza delicious italian slice",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134252.jpg?_wi=2",
|
||||
imageAlt: "margherita pizza rustic table top view",
|
||||
title: "Steinofen-gebacken", description: "Traditionell für den perfekten knusprigen Boden.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-fresh-cheese_23-2150096953.jpg", imageAlt: "margherita pizza" },
|
||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-delicious-pizza-with-fresh-red-tomatoes-dark-salad-food-dough-cake-color-photo-fast-food_140725-160918.jpg", imageAlt: "salami pizza" },
|
||||
},
|
||||
{
|
||||
title: "Täglich frische Zutaten",
|
||||
description: "Qualität, die man schmeckt.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-pizza-with-tomatoes-with-eggs-glass-milk-flour-table_140725-13969.jpg",
|
||||
imageAlt: "gourmet specialty pizza melted cheese",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-cooking-pizza-together_23-2150283011.jpg",
|
||||
imageAlt: "rustic vegetable pizza fresh ingredients",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-girl-friends-having-pizza-bar_1303-19887.jpg?_wi=1",
|
||||
imageAlt: "margherita pizza rustic table top view",
|
||||
},
|
||||
{
|
||||
title: "Schnelle Lieferung",
|
||||
description: "Heiß und frisch direkt zu Ihnen nach Hause.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-cutter-arrangement_23-2148574226.jpg",
|
||||
imageAlt: "margherita pizza rustic table top view",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-pizza-tray_23-2149235624.jpg",
|
||||
imageAlt: "salami pizza delicious italian slice",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-couple-sharing-fast-food_329181-20757.jpg?_wi=1",
|
||||
imageAlt: "margherita pizza rustic table top view",
|
||||
},
|
||||
title: "Täglich frische Zutaten", description: "Qualität, die man schmeckt.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/side-view-pizza-with-tomatoes-with-eggs-glass-milk-flour-table_140725-13969.jpg", imageAlt: "gourmet pizza" },
|
||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-cooking-pizza-together_23-2150283011.jpg", imageAlt: "vegetable pizza" },
|
||||
}
|
||||
]}
|
||||
showStepNumbers={true}
|
||||
title="Warum Pizzeria Amico?"
|
||||
@@ -157,48 +80,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Margherita Classica",
|
||||
price: "9,90 €",
|
||||
variant: "Klassiker",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-with-tomatoes-oil_23-2148753738.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Salami Amico",
|
||||
price: "11,90 €",
|
||||
variant: "Würziger Genuss",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pizza-slices-bundled-small-tray-marble_114579-44946.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Mafiosi Special",
|
||||
price: "13,90 €",
|
||||
variant: "Scharf & Deftig",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-mushroom-pizza-delicious-dough-with-fresh-vegetables-dark-surface-dough-meal-food-italian-bake_140725-102076.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Farmer's Pizza",
|
||||
price: "12,90 €",
|
||||
variant: "Vegetarisch",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-pizza_23-2149298075.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Quattro Formaggi",
|
||||
price: "12,50 €",
|
||||
variant: "Käse pur",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-blackboard_23-2148925187.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Prosciutto e Funghi",
|
||||
price: "11,50 €",
|
||||
variant: "Traditionell",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-italian-pizza-with-various-ingredients_181624-59426.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Margherita Classica", price: "9,90 €", variant: "Klassiker", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-with-tomatoes-oil_23-2148753738.jpg" },
|
||||
{ id: "p2", name: "Salami Amico", price: "11,90 €", variant: "Würziger Genuss", imageSrc: "http://img.b2bpic.net/free-photo/pizza-slices-bundled-small-tray-marble_114579-44946.jpg" },
|
||||
{ id: "p3", name: "Mafiosi Special", price: "13,90 €", variant: "Scharf & Deftig", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-mushroom-pizza-delicious-dough-with-fresh-vegetables-dark-surface-dough-meal-food-italian-bake_140725-102076.jpg" }
|
||||
]}
|
||||
title="Unsere Signature-Pizzen"
|
||||
description="Entdecke unsere beliebtesten Kreationen."
|
||||
@@ -211,130 +95,18 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah Müller",
|
||||
handle: "@sarah_m",
|
||||
testimonial: "Exzellente Pizza und sehr freundliches Personal.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-girl-friends-having-pizza-bar_1303-19887.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Markus Weber",
|
||||
handle: "@markus_w",
|
||||
testimonial: "Perfekte Pizza, tolles Preis-Leistungs-Verhältnis.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-couple-sharing-fast-food_329181-20757.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Julia Schneider",
|
||||
handle: "@julia_s",
|
||||
testimonial: "Schneller Service, werde definitiv wieder bestellen.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-with-food_23-2149143985.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Thomas Schmidt",
|
||||
handle: "@thomas_s",
|
||||
testimonial: "Sehr lecker! Pünktliche Lieferung.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-table_23-2149213367.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Anna Becker",
|
||||
handle: "@anna_b",
|
||||
testimonial: "Echte italienische Seele, sehr zu empfehlen.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-eating-traditional-italian-pizza-together_52683-110887.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Sarah Müller", handle: "@sarah_m", testimonial: "Exzellente Pizza!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/three-girl-friends-having-pizza-bar_1303-19887.jpg" },
|
||||
{ id: "t2", name: "Markus Weber", handle: "@markus_w", testimonial: "Perfekte Pizza!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiley-couple-sharing-fast-food_329181-20757.jpg" }
|
||||
]}
|
||||
showRating={true}
|
||||
title="Was unsere Kunden sagen"
|
||||
description="Wir schätzen jedes Feedback und arbeiten ständig an uns."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="commitment" data-section="commitment">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Wir hören zu. Wir verbessern uns."
|
||||
description="Wir haben unsere Küchenprozesse, Lieferzeiten und Qualitätskontrollen optimiert, um sicherzustellen, dass jede Pizza unseren – und Ihren – Standards entspricht."
|
||||
metrics={[
|
||||
{
|
||||
value: "100%",
|
||||
title: "Leidenschaft",
|
||||
},
|
||||
{
|
||||
value: "Neu",
|
||||
title: "Qualitätsprozesse",
|
||||
},
|
||||
{
|
||||
value: "Schnell",
|
||||
title: "Lieferzeit",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cook-kitchen-putting-ingredients-pizza-old-wooden-background-pizza-concept-production-delivery-food-cooking-concept-close-up_639032-447.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Direkt bestellen"
|
||||
title="Hungrig auf Pizza?"
|
||||
description="Bestelle jetzt direkt und genieße italienische Momente."
|
||||
buttonText="Bestellung aufgeben"
|
||||
description="Wir schätzen jedes Feedback."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt",
|
||||
items: [
|
||||
{
|
||||
label: "Musterstraße 123",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "0123 456789",
|
||||
href: "tel:0123456789",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Öffnungszeiten",
|
||||
items: [
|
||||
{
|
||||
label: "Mo-So: 11-22 Uhr",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Kontakt", items: [{ label: "Musterstraße 123", href: "#" }] }]}
|
||||
logoText="Pizzeria Amico"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user