Update src/app/about/page.tsx
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user