Merge version_1_1781768454719 into main #1

Merged
bender merged 2 commits from version_1_1781768454719 into main 2026-06-18 07:42:09 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "/"
"name": "Home", "href": "/"
},
{
"name": "About",
"href": "/about"
"name": "About", "href": "/about"
},
{
"name": "Services",
"href": "/services"
"name": "Services", "href": "/services"
},
{
"name": "Projects",
"href": "/projects"
"name": "Projects", "href": "/projects"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Services Grid",
"href": "#services-grid"
"name": "Services Grid", "href": "#services-grid"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="HVAC TORONTO"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=vjh8lh"
ctaButton={{
text: "Get Quote",
href: "/contact",
}}
text: "Get Quote", href: "/contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,42 +48,27 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Projects",
href: "/projects",
},
label: "Projects", href: "/projects"},
],
},
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Furnace Repair",
href: "/services",
},
label: "Furnace Repair", href: "/services"},
{
label: "AC Repair",
href: "/services",
},
label: "AC Repair", href: "/services"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Support",
href: "/contact",
},
label: "Support", href: "/contact"},
{
label: "Emergency",
href: "/contact",
},
label: "Emergency", href: "/contact"},
],
},
]}