Merge version_1_1781407740695 into main #2

Merged
bender merged 2 commits from version_1_1781407740695 into main 2026-06-14 03:30:23 +00:00

View File

@@ -7,123 +7,60 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "/"
},
{
"name": "About",
"href": "/about"
},
{
"name": "Services",
"href": "#services"
},
{
"name": "Portfolio",
"href": "/portfolio"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Why Us",
"href": "#why-us"
}
];
{ "name": "Home", "href": "/" },
{ "name": "About", "href": "/about" },
{ "name": "Services", "href": "/services" },
{ "name": "Portfolio", "href": "/portfolio" },
{ "name": "Contact", "href": "/contact" }
];
return (
<StyleProvider buttonVariant="default" siteBackground="gridLines" heroBackground="horizonGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Pimentel Pools"
ctaButton={{
text: "Get a Quote",
href: "/contact",
}}
navItems={navItems} />
logo="Pimentel Pools"
logoImageSrc="http://img.b2bpic.net/free-vector/modern-architecture-business-card-template_742173-33037.jpg"
ctaButton={{
text: "Get a Quote", href: "/contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Pimentel Pools and Restoration"
columns={[
{
title: "Navigation",
items: [
brand="Pimentel Pools and Restoration"
columns={[
{
label: "Home",
href: "/",
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Portfolio", href: "/portfolio" },
],
},
{
label: "About Us",
href: "/about",
title: "Services", items: [
{ label: "Construction", href: "/services" },
{ label: "Restoration", href: "/services" },
{ label: "Maintenance", href: "/services" },
],
},
{
label: "Services",
href: "/services",
title: "Contact", items: [
{ label: "71 Reid Street, Hamilton", href: "#" },
{ label: "+1 (441) 293-8817", href: "tel:+14412938817" },
{ label: "pimentelpools@outlook.com", href: "mailto:pimentelpools@outlook.com" },
],
},
{
label: "Portfolio",
href: "/portfolio",
},
],
},
{
title: "Services",
items: [
{
label: "Construction",
href: "/services",
},
{
label: "Restoration",
href: "/services",
},
{
label: "Maintenance",
href: "/services",
},
],
},
{
title: "Contact",
items: [
{
label: "71 Reid Street, Hamilton",
href: "#",
},
{
label: "+1 (441) 293-8817",
href: "tel:+14412938817",
},
{
label: "pimentelpools@outlook.com",
href: "mailto:pimentelpools@outlook.com",
},
],
},
]}
copyright="© 2024 Pimentel Pools and Restoration. All rights reserved."
links={[
{
label: "Terms",
href: "/terms",
},
{
label: "Privacy",
href: "/privacy",
},
]}
/>
]}
copyright="© 2024 Pimentel Pools and Restoration. All rights reserved."
links={[
{ label: "Terms", href: "/terms" },
{ label: "Privacy", href: "/privacy" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);