Merge version_1_1782051528581 into main #1

Merged
bender merged 2 commits from version_1_1782051528581 into main 2026-06-21 14:20:00 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Reviews",
"href": "#reviews"
"name": "Reviews", "href": "#reviews"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,59 +35,45 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Precision Plumbing"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="Precision Plumbing"
logoImageSrc="http://img.b2bpic.net/free-vector/flat-labor-day-labels-collection_23-2149037529.jpg"
ctaButton={{
text: "Book Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Precision Plumbing"
columns={[
{
title: "Our Services",
items: [
brand="Precision Plumbing"
columns={[
{
label: "Repairs",
href: "#services",
title: "Our Services", items: [
{
label: "Repairs", href: "#services"},
{
label: "Drain Cleaning", href: "#services"},
],
},
{
label: "Drain Cleaning",
href: "#services",
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Reviews", href: "#reviews"},
],
},
],
},
{
title: "Company",
items: [
]}
copyright="© 2024 Precision Plumbing. All rights reserved."
links={[
{
label: "About Us",
href: "#about",
},
label: "Privacy Policy", href: "#"},
{
label: "Reviews",
href: "#reviews",
},
],
},
]}
copyright="© 2024 Precision Plumbing. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);