Merge version_1_1781348753501 into main #1

Merged
bender merged 2 commits from version_1_1781348753501 into main 2026-06-13 11:07:02 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Trust",
"href": "#trust"
"name": "Trust", "href": "#trust"
},
{
"name": "Process",
"href": "#process"
"name": "Process", "href": "#process"
},
{
"name": "Cta",
"href": "#cta"
"name": "Cta", "href": "#cta"
}
];
@@ -42,55 +35,42 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Newton"
ctaButton={{
text: "Anfrage",
href: "#contact",
}}
navItems={navItems} />
logo="Newton"
logoImageSrc="https://images.pexels.com/photos/7430708/pexels-photo-7430708.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
ctaButton={{
text: "Anfrage", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Newton"
columns={[
{
title: "Company",
items: [
brand="Newton"
columns={[
{
label: "About",
href: "#about",
title: "Company", items: [
{
label: "About", href: "#about"},
{
label: "Services", href: "#services"},
],
},
{
label: "Services",
href: "#services",
title: "Legal", items: [
{
label: "Privacy", href: "#"},
{
label: "Terms", href: "#"},
],
},
],
},
{
title: "Legal",
items: [
]}
copyright="© 2024 Newton. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
copyright="© 2024 Newton. All rights reserved."
links={[
{
label: "Impressum",
href: "#",
},
]}
/>
label: "Impressum", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);