Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| df4f0da48a | |||
| 71a7c1d221 | |||
| d4e6498da6 |
108
src/app/impressum/page.tsx
Normal file
108
src/app/impressum/page.tsx
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
|
import LegalSection from "@/components/legal/LegalSection";
|
||||||
|
|
||||||
|
export default function ImpressumPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-bubble"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="compact"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="subtle-shadow"
|
||||||
|
primaryButtonStyle="shadow"
|
||||||
|
secondaryButtonStyle="radial-glow"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Über uns", id: "#about" },
|
||||||
|
{ name: "Speisekarte", id: "#menu" },
|
||||||
|
{ name: "Bewertungen", id: "#testimonials" },
|
||||||
|
{ name: "FAQ", id: "#faq" },
|
||||||
|
{ name: "Kontakt", id: "#contact" },
|
||||||
|
{ name: "Impressum", id: "/impressum" }
|
||||||
|
]}
|
||||||
|
logoSrc="http://img.b2bpic.net/free-photo/top-view-pizza-dough-with-tomatoes-word-written-flour_23-2148753791.jpg"
|
||||||
|
logoAlt="Pizzeria La Luna Logo"
|
||||||
|
brandName="Pizzeria La Luna"
|
||||||
|
button={{ text: "Jetzt bestellen", href: "#menu" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="impressum-content" data-section="impressum-content">
|
||||||
|
<LegalSection
|
||||||
|
layout="page"
|
||||||
|
title="Impressum"
|
||||||
|
sections={[
|
||||||
|
{
|
||||||
|
heading: "Impressum", content: [
|
||||||
|
{ type: "paragraph", text: "Nevio Dufour Webdesign" },
|
||||||
|
{ type: "paragraph", text: "Zanderstraße 35" },
|
||||||
|
{ type: "paragraph", text: "53804 Much" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: "Kontakt", content: [
|
||||||
|
{ type: "paragraph", text: "Telefon: +49 15776423530" },
|
||||||
|
{ type: "paragraph", text: "E-Mail: neviodufour0@gmail.com" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: "Berufsbezeichnung", content: [{ type: "paragraph", text: "anderer Beruf" }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: "Verbraucherstreitbeilegung", content: [
|
||||||
|
{
|
||||||
|
type: "paragraph", text: "Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: "Quelle", content: [{ type: "paragraph", text: "eRecht24" }]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseCard
|
||||||
|
logoText="Pizzeria La Luna"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Links", items: [
|
||||||
|
{ label: "Speisekarte", href: "#menu" },
|
||||||
|
{ label: "Über uns", href: "#about" },
|
||||||
|
{ label: "Kontakt", href: "#contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Rechtliches", items: [
|
||||||
|
{ label: "Datenschutz", href: "#" },
|
||||||
|
{ label: "Impressum", href: "/impressum" },
|
||||||
|
{ label: "AGB", href: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Folgen Sie uns", items: [
|
||||||
|
{ label: "Instagram", href: "https://instagram.com/pizzerialaluna" },
|
||||||
|
{ label: "Facebook", href: "https://facebook.com/pizzerialaluna" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
copyrightText="© 2024 Pizzeria La Luna. Alle Rechte vorbehalten."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -43,6 +43,8 @@ export default function LandingPage() {
|
|||||||
name: "FAQ", id: "#faq"},
|
name: "FAQ", id: "#faq"},
|
||||||
{
|
{
|
||||||
name: "Kontakt", id: "#contact"},
|
name: "Kontakt", id: "#contact"},
|
||||||
|
{
|
||||||
|
name: "Impressum", id: "/impressum"},
|
||||||
]}
|
]}
|
||||||
logoSrc="http://img.b2bpic.net/free-photo/top-view-pizza-dough-with-tomatoes-word-written-flour_23-2148753791.jpg"
|
logoSrc="http://img.b2bpic.net/free-photo/top-view-pizza-dough-with-tomatoes-word-written-flour_23-2148753791.jpg"
|
||||||
logoAlt="Pizzeria La Luna Logo"
|
logoAlt="Pizzeria La Luna Logo"
|
||||||
@@ -146,14 +148,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "years", value: "25+", title: "Jahre Erfahrung", description: "Wir backen seit über zwei Jahrzehnten Pizzen mit Leidenschaft und Hingabe.", icon: CalendarCheck,
|
id: "years", value: "25+", title: "Jahre Erfahrung", description: "Wir backen seit über zwei Jahrzehnten Pizzen mit Leidenschaft und Hingabe.", icon: CalendarCheck
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "pizzas", value: "500k+", title: "Pizzen gebacken", description: "Über eine halbe Million Pizzen haben unsere Öfen bereits verlassen.", icon: Pizza,
|
id: "pizzas", value: "500k+", title: "Pizzen gebacken", description: "Über eine halbe Million Pizzen haben unsere Öfen bereits verlassen.", icon: Pizza
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "customers", value: "100k+", title: "Zufriedene Kunden", description: "Tausende Stammkunden lieben unsere authentische italienische Küche.", icon: Users,
|
id: "customers", value: "100k+", title: "Zufriedene Kunden", description: "Tausende Stammkunden lieben unsere authentische italienische Küche.", icon: Users
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
title="Pizzeria La Luna in Zahlen"
|
title="Pizzeria La Luna in Zahlen"
|
||||||
description="Unsere Erfolgsgeschichte ist geprägt von Qualität, Tradition und der Liebe zu jedem Detail."
|
description="Unsere Erfolgsgeschichte ist geprägt von Qualität, Tradition und der Liebe zu jedem Detail."
|
||||||
@@ -250,7 +252,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
label: "Datenschutz", href: "#"},
|
label: "Datenschutz", href: "#"},
|
||||||
{
|
{
|
||||||
label: "Impressum", href: "#"},
|
label: "Impressum", href: "/impressum"},
|
||||||
{
|
{
|
||||||
label: "AGB", href: "#"},
|
label: "AGB", href: "#"},
|
||||||
],
|
],
|
||||||
@@ -270,4 +272,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user