3 Commits

Author SHA1 Message Date
1ac1e94588 Merge version_4 into main
Merge version_4 into main
2026-06-03 10:22:37 +00:00
893f23af46 Update src/app/impressum/page.tsx 2026-06-03 10:22:34 +00:00
ee10135d9b Merge version_3 into main
Merge version_3 into main
2026-06-02 23:40:20 +00:00

View File

@@ -5,6 +5,7 @@ import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import LegalSection from "@/components/legal/LegalSection"; import LegalSection from "@/components/legal/LegalSection";
import { Star, MapPin, ThumbsUp, Car, ShieldCheck } from "lucide-react";
export default function ImpressumPage() { export default function ImpressumPage() {
return ( return (
@@ -24,51 +25,45 @@ export default function ImpressumPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "#home" },
{ name: "Über uns", id: "#about" }, { name: "Über uns", id: "#about" },
{ name: "Speisekarte", id: "#menu" }, { name: "Fahrzeuge", id: "#menu" },
{ name: "Bewertungen", id: "#testimonials" }, { name: "Bewertungen", id: "#testimonials" },
{ name: "FAQ", id: "#faq" }, { name: "FAQ", id: "#faq" },
{ name: "Kontakt", id: "#contact" }, { name: "Kontakt", id: "#contact" },
{ name: "Impressum", id: "/impressum" } { name: "Impressum", id: "/impressum" }
]} ]}
logoSrc="http://img.b2bpic.net/free-photo/top-view-pizza-dough-with-tomatoes-word-written-flour_23-2148753791.jpg" logoSrc="https://img.b2bpic.net/free-photo/car-repair-service-banner-website-design-concept-business-template-car-service_509927-46.jpg"
logoAlt="Pizzeria La Luna Logo" logoAlt="A.B Autohandel Logo"
brandName="Pizzeria La Luna" brandName="A.B Autohandel"
button={{ text: "Jetzt bestellen", href: "#menu" }} button={{ text: "Fahrzeuge entdecken", href: "#menu" }}
/> />
</div> </div>
<div id="impressum-content" data-section="impressum-content"> <div id="impressum-content" data-section="impressum-content">
<LegalSection <LegalSection
layout="page" layout="page"
title="Impressum" title="Impressum A.B Autohandel"
sections={[ sections={[
{ {
heading: "Impressum", content: [ heading: "Angaben gemäß § 5 TMG", content: [
{ type: "paragraph", text: "Nevio Dufour Webdesign" }, { type: "paragraph", text: "A.B Autohandel" },
{ type: "paragraph", text: "Zanderstraße 35" }, { type: "paragraph", text: "Freier Grunder Str. 115" },
{ type: "paragraph", text: "53804 Much" } { type: "paragraph", text: "57234 Wilnsdorf" }
] ]
}, },
{ {
heading: "Kontakt", content: [ heading: "Kontakt", content: [
{ type: "paragraph", text: "Telefon: +49 15776423530" }, { type: "paragraph", text: "Telefon: 01511 7621701" },
{ type: "paragraph", text: "E-Mail: neviodufour0@gmail.com" } { type: "paragraph", text: "E-Mail: info@ab-autohandel.de" }
] ]
}, },
{
heading: "Berufsbezeichnung", content: [{ type: "paragraph", text: "anderer Beruf" }]
},
{ {
heading: "Verbraucherstreitbeilegung", content: [ heading: "Verbraucherstreitbeilegung", content: [
{ {
type: "paragraph", text: "Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen." type: "paragraph", text: "Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen."
} }
] ]
},
{
heading: "Quelle", content: [{ type: "paragraph", text: "eRecht24" }]
} }
]} ]}
/> />
@@ -76,33 +71,35 @@ export default function ImpressumPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Pizzeria La Luna" logoText="A.B Autohandel"
columns={[ columns={[
{ {
title: "Links", items: [ title: "Links", items: [
{ label: "Speisekarte", href: "#menu" }, { label: "Startseite", href: "#home" },
{ label: "Fahrzeuge", href: "#menu" },
{ label: "Über uns", href: "#about" }, { label: "Über uns", href: "#about" },
{ label: "Kontakt", href: "#contact" } { label: "Kontakt", href: "#contact" }
] ]
}, },
{
title: "Öffnungszeiten", items: [
{ label: "Mo - Fr: 09:00 - 18:30 Uhr", href: "#" },
{ label: "Sa: 10:00 - 14:00 Uhr", href: "#" },
{ label: "So: Geschlossen", href: "#" }
]
},
{ {
title: "Rechtliches", items: [ title: "Rechtliches", items: [
{ label: "Datenschutz", href: "#" }, { label: "Datenschutz", href: "#" },
{ label: "Impressum", href: "/impressum" }, { label: "Impressum", href: "/impressum" },
{ label: "AGB", href: "#" } { 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." copyrightText="© 2024 A.B Autohandel. Alle Rechte vorbehalten."
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }