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 FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import LegalSection from "@/components/legal/LegalSection";
import { Star, MapPin, ThumbsUp, Car, ShieldCheck } from "lucide-react";
export default function ImpressumPage() {
return (
@@ -24,51 +25,45 @@ export default function ImpressumPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "#home" },
{ name: "Über uns", id: "#about" },
{ name: "Speisekarte", id: "#menu" },
{ name: "Fahrzeuge", 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" }}
logoSrc="https://img.b2bpic.net/free-photo/car-repair-service-banner-website-design-concept-business-template-car-service_509927-46.jpg"
logoAlt="A.B Autohandel Logo"
brandName="A.B Autohandel"
button={{ text: "Fahrzeuge entdecken", href: "#menu" }}
/>
</div>
<div id="impressum-content" data-section="impressum-content">
<LegalSection
layout="page"
title="Impressum"
title="Impressum A.B Autohandel"
sections={[
{
heading: "Impressum", content: [
{ type: "paragraph", text: "Nevio Dufour Webdesign" },
{ type: "paragraph", text: "Zanderstraße 35" },
{ type: "paragraph", text: "53804 Much" }
heading: "Angaben gemäß § 5 TMG", content: [
{ type: "paragraph", text: "A.B Autohandel" },
{ type: "paragraph", text: "Freier Grunder Str. 115" },
{ type: "paragraph", text: "57234 Wilnsdorf" }
]
},
{
heading: "Kontakt", content: [
{ type: "paragraph", text: "Telefon: +49 15776423530" },
{ type: "paragraph", text: "E-Mail: neviodufour0@gmail.com" }
{ type: "paragraph", text: "Telefon: 01511 7621701" },
{ type: "paragraph", text: "E-Mail: info@ab-autohandel.de" }
]
},
{
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" }]
}
]}
/>
@@ -76,33 +71,35 @@ export default function ImpressumPage() {
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Pizzeria La Luna"
logoText="A.B Autohandel"
columns={[
{
title: "Links", items: [
{ label: "Speisekarte", href: "#menu" },
{ label: "Startseite", href: "#home" },
{ label: "Fahrzeuge", href: "#menu" },
{ label: "Über uns", href: "#about" },
{ 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: [
{ 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."
copyrightText="© 2024 A.B Autohandel. Alle Rechte vorbehalten."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}