Merge version_3 into main #7

Merged
bender merged 1 commits from version_3 into main 2026-05-05 21:01:57 +00:00

View File

@@ -9,43 +9,42 @@ import LegalSection from '@/components/legal/LegalSection';
export default function ImpressumPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="aurora"
cardStyle="glass-elevated"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="aurora"
cardStyle="glass-elevated"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Startseite", id: "/" },
{ name: "Über uns", id: "/#about" },
{ name: "Service", id: "/#services" },
{ name: "Kontakt", id: "/#contact" },
{ name: "Impressum", id: "/impressum" },
{ name: "Über uns", id: "/about" },
{ name: "Service", id: "/services" },
{ name: "Kontakt", id: "/contact" },
{ name: "Impressum", id: "/impressum" }
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DJxMXRMqmWOWYlQx7Jjc9l9FrA/uploaded-1778014373399-ktc98mgl.jpg"
brandName="Austro-Tel Handyshop"
/>
</div>
<div id="impressum" data-section="impressum" className="pt-32 pb-16">
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Impressum"
sections={[
{
heading: "Angaben gemäß § 5 TMG",
content: { text: "Austro-Tel Handyshop\nOtto Glöckel-Straße 1\n2514 Traiskirchen\nÖsterreich" }
heading: "Angaben gemäß § 5 TMG", content: { type: "paragraph", text: "Austro-Tel Handyshop, Hauptstraße 1, 2514 Traiskirchen." }
},
{
heading: "Kontakt",
content: { items: ["Telefon: 02252 521031", "E-Mail: support.austrotel@hotmail.com"] }
heading: "Kontakt", content: { type: "list", items: ["Telefon: 0123 456789", "E-Mail: info@austro-tel.at"] }
}
]}
/>
@@ -54,12 +53,10 @@ export default function ImpressumPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Austro-Tel Handyshop", items: [{ label: "Otto Glöckel-Straße 1", href: "#" }, { label: "2514 Traiskirchen", href: "#" }] },
{ title: "Kontakt", items: [{ label: "02252 521031", href: "tel:02252521031" }, { label: "support.austrotel@hotmail.com", href: "mailto:support.austrotel@hotmail.com" }, { label: "E-Mail senden", href: "/#contact" }] },
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "#" }] },
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "#" }] }
]}
bottomLeftText="© 2024 Austro-Tel Handyshop"
bottomRightText="Alle Preise inkl. MwSt."
bottomRightText="Alle Rechte vorbehalten."
/>
</div>
</ReactLenis>