Merge version_1_1781391537550 into main #1

Merged
bender merged 2 commits from version_1_1781391537550 into main 2026-06-13 23:00:00 +00:00

View File

@@ -7,98 +7,54 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Services",
"href": "#services"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Reviews",
"href": "#reviews"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Gallery",
"href": "#gallery"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Services", href: "#services" },
{ name: "About", href: "#about" },
{ name: "Reviews", href: "#reviews" },
{ name: "Contact", href: "#contact" },
{ name: "Hero", href: "#hero" },
{ name: "Gallery", href: "#gallery" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="shift" siteBackground="floatingGradient" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Castro Valley Roofing"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
logo="Castro Valley Roofing"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=dfxxlx"
ctaButton={{
text: "Get Quote", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Castro Valley Roofing"
columns={[
{
title: "Services",
items: [
brand="Castro Valley Roofing"
columns={[
{
label: "Repair",
href: "#services",
title: "Services", items: [
{ label: "Repair", href: "#services" },
{ label: "Installation", href: "#services" },
{ label: "Maintenance", href: "#services" },
],
},
{
label: "Installation",
href: "#services",
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
{
label: "Maintenance",
href: "#services",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 Castro Valley Roofing. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
{
label: "LinkedIn",
href: "#",
},
]}
/>
]}
copyright="© 2024 Castro Valley Roofing. All rights reserved."
links={[
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);