Update src/app/kontakt/page.tsx

This commit is contained in:
2026-04-12 14:11:04 +00:00
parent a66b684ff3
commit 58a9d91109

View File

@@ -14,31 +14,23 @@ export default function LandingPage() {
defaultButtonVariant="bounce-effect"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Startseite",
id: "/",
},
{
name: "Sortiment",
id: "/sortiment",
},
{
name: "Services",
id: "/services",
},
{
name: "Über uns",
id: "/ueber-uns",
},
{
name: "Kontakt",
id: "/kontakt",
},
{ name: "Startseite", id: "/" },
{ name: "Sortiment", id: "/sortiment" },
{ name: "Services", id: "/services" },
{ name: "Über uns", id: "/ueber-uns" },
{ name: "Kontakt", id: "/kontakt" },
]}
brandName="Arica Shop"
/>
@@ -52,18 +44,8 @@ export default function LandingPage() {
title="Besuchen Sie uns"
description="Im Herzen der Stadt."
metrics={[
{
id: "k1",
icon: MapPin,
title: "Adresse",
value: "Hauptstr 1",
},
{
id: "k2",
icon: Phone,
title: "Telefon",
value: "089-12345",
},
{ id: "k1", icon: MapPin, title: "Adresse", value: "Hauptstr 1" },
{ id: "k2", icon: Phone, title: "Telefon", value: "089-12345" },
]}
/>
</div>
@@ -81,49 +63,9 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Arica Shop"
columns={[
{
title: "Navigation",
items: [
{
label: "Startseite",
href: "/",
},
{
label: "Sortiment",
href: "/sortiment",
},
{
label: "Kontakt",
href: "/kontakt",
},
],
},
{
title: "Services",
items: [
{
label: "Versand",
href: "/services",
},
{
label: "Drucken & Kopieren",
href: "/services",
},
],
},
{
title: "Info",
items: [
{
label: "Über uns",
href: "/ueber-uns",
},
{
label: "Datenschutz",
href: "#",
},
],
},
{ title: "Navigation", items: [{ label: "Startseite", href: "/" }, { label: "Sortiment", href: "/sortiment" }, { label: "Kontakt", href: "/kontakt" }] },
{ title: "Services", items: [{ label: "Versand", href: "/services" }, { label: "Drucken & Kopieren", href: "/services" }] },
{ title: "Info", items: [{ label: "Über uns", href: "/ueber-uns" }, { label: "Datenschutz", href: "#" }] },
]}
/>
</div>