Merge version_1_1781450774322 into main #1

Merged
bender merged 2 commits from version_1_1781450774322 into main 2026-06-14 15:27:18 +00:00

View File

@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -43,32 +36,28 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Bramfelder Bedachung"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
logo="Bramfelder Bedachung"
logoImageSrc="http://img.b2bpic.net/free-photo/statue-woman-frankfurt-germany_1268-20929.jpg"
ctaButton={{
text: "Get Quote", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="Bramfelder Bedachungs GmbH"
copyright="© 2024 Bramfelder Bedachungs GmbH. All rights reserved."
socialLinks={[
{
icon: Facebook,
href: "#",
},
{
icon: Instagram,
href: "#",
},
]}
/>
brand="Bramfelder Bedachungs GmbH"
copyright="© 2024 Bramfelder Bedachungs GmbH. All rights reserved."
socialLinks={[
{
icon: "Facebook", href: "#"},
{
icon: "Instagram", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}