Merge version_1_1782091854586 into main #1

Merged
bender merged 2 commits from version_1_1782091854586 into main 2026-06-22 01:32:03 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#home"
"name": "Home", "href": "#home"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Gallery",
"href": "#gallery"
"name": "Gallery", "href": "#gallery"
},
{
"name": "About Us",
"href": "#about"
"name": "About Us", "href": "#about"
},
{
"name": "Contact Us",
"href": "#contact"
"name": "Contact Us", "href": "#contact"
},
{
"name": "Service Areas",
"href": "#areas"
"name": "Service Areas", "href": "#areas"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
}
];
@@ -42,85 +35,60 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Robby's Roofing"
ctaButton={{
text: "Get Free Estimate",
href: "#contact",
}}
navItems={navItems} />
logo="Robby's Roofing"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=t48nfj"
ctaButton={{
text: "Get Free Estimate", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Robby's Roofing"
columns={[
{
title: "Contact",
items: [
brand="Robby's Roofing"
columns={[
{
label: "(555) 555-0199",
href: "tel:5550199",
title: "Contact", items: [
{
label: "(555) 555-0199", href: "tel:5550199"},
{
label: "info@robbysroofing.com", href: "mailto:info@robbysroofing.com"},
{
label: "Oakwood Heights, IL 60638", href: "#"},
],
},
{
label: "info@robbysroofing.com",
href: "mailto:info@robbysroofing.com",
title: "Quick Links", items: [
{
label: "Home", href: "#home"},
{
label: "Services", href: "#services"},
{
label: "Gallery", href: "#gallery"},
],
},
{
label: "Oakwood Heights, IL 60638",
href: "#",
title: "Hours", items: [
{
label: "MonFri: 8am6pm", href: "#"},
{
label: "Sat: 9am2pm", href: "#"},
{
label: "Sunday: Closed", href: "#"},
],
},
],
},
{
title: "Quick Links",
items: [
]}
copyright="© 2024 Robby's Roofing. All rights reserved."
links={[
{
label: "Home",
href: "#home",
},
label: "Privacy Policy", href: "#"},
{
label: "Services",
href: "#services",
},
{
label: "Gallery",
href: "#gallery",
},
],
},
{
title: "Hours",
items: [
{
label: "MonFri: 8am6pm",
href: "#",
},
{
label: "Sat: 9am2pm",
href: "#",
},
{
label: "Sunday: Closed",
href: "#",
},
],
},
]}
copyright="© 2024 Robby's Roofing. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=t48nfj"
/>
label: "Terms of Service", href: "#"},
]}
imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=t48nfj"
/>
</SectionErrorBoundary>
</StyleProvider>
);