Merge version_1_1781728470465 into main #1

Merged
bender merged 2 commits from version_1_1781728470465 into main 2026-06-17 20:35:54 +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": "#testimonials"
"name": "Reviews", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Why Choose Us",
"href": "#why-choose-us"
"name": "Why Choose Us", "href": "#why-choose-us"
},
{
"name": "Case Study",
"href": "#case-study"
"name": "Case Study", "href": "#case-study"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
ctaButton={{
text: "Schedule Service",
href: "#contact",
}}
text: "Schedule Service", href: "#contact"}}
logo="Philips Mechanical"
logoImageSrc="http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-11664.jpg"
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,50 +49,32 @@ export default function Layout() {
brand="Philips Mechanical"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "Services",
href: "#services",
},
label: "Services", href: "#services"},
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Reviews",
href: "#testimonials",
},
label: "Reviews", href: "#testimonials"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Call Us",
href: "tel:5550123456",
},
label: "Call Us", href: "tel:5550123456"},
{
label: "Email",
href: "mailto:hello@philips.com",
},
label: "Email", href: "mailto:hello@philips.com"},
{
label: "Hours",
href: "#",
},
label: "Hours", href: "#"},
],
},
]}
copyright="© 2024 Philips Mechanical."
links={[
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>