Merge version_1_1781729598951 into main #1

Merged
bender merged 2 commits from version_1_1781729598951 into main 2026-06-17 21:04:57 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Start",
"href": "#hero"
"name": "Start", "href": "#hero"
},
{
"name": "Über uns",
"href": "#about"
"name": "Über uns", "href": "#about"
},
{
"name": "Leistungen",
"href": "#features"
"name": "Leistungen", "href": "#features"
},
{
"name": "Kontakt",
"href": "#contact"
"name": "Kontakt", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarFloating
logo="Kümmerle"
ctaButton={{
text: "Kontakt aufnehmen",
href: "#contact",
}}
text: "Kontakt aufnehmen", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,47 +48,37 @@ export default function Layout() {
brand="Kümmerle Technischer Gebäudeservice"
columns={[
{
title: "Service",
items: [
title: "Service", items: [
{
label: "Leistungen",
href: "#features",
},
label: "Leistungen", href: "#features"},
{
label: "Über uns",
href: "#about",
},
label: "Über uns", href: "#about"},
],
},
{
title: "Kontakt",
items: [
title: "Kontakt", items: [
{
label: "Kirchheim unter Teck",
href: "#",
},
label: "Kirchheim unter Teck", href: "#"},
{
label: "07021 123456",
href: "tel:07021123456",
},
label: "07021 123456", href: "tel:07021123456"},
],
},
{
title: "Rechtliches",
items: [
title: "Rechtliches", items: [
{
label: "Impressum",
href: "#",
},
label: "Impressum", href: "#"},
{
label: "Datenschutz",
href: "#",
},
label: "Datenschutz", href: "#"},
],
},
]}
copyright="© 2024 Kümmerle Elektrotechnik"
imageSrc="http://img.b2bpic.net/free-vector/labour-day-label-collection_23-2148099395.jpg"
links={[
{
label: "Startseite", href: "/"
}
]}
/>
</SectionErrorBoundary>
</StyleProvider>