Merge version_1_1781469187837 into main #1

Merged
bender merged 2 commits from version_1_1781469187837 into main 2026-06-14 20:34:13 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Services",
"href": "#features"
"name": "Services", "href": "#features"
},
{
"name": "Portfolio",
"href": "#product"
"name": "Portfolio", "href": "#product"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,67 +35,48 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Elements Pro"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
logo="Elements Pro"
logoImageSrc="http://img.b2bpic.net/free-vector/flat-design-geometric-business-card_23-2149292245.jpg"
ctaButton={{
text: "Get Quote", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Elements Pro Masonry"
columns={[
{
title: "Services",
items: [
brand="Elements Pro Masonry"
columns={[
{
label: "Patios",
href: "#",
title: "Services", items: [
{
label: "Patios", href: "#"},
{
label: "Walkways", href: "#"},
{
label: "Retaining Walls", href: "#"},
],
},
{
label: "Walkways",
href: "#",
title: "Company", items: [
{
label: "Portfolio", href: "#"},
{
label: "Pricing", href: "#"},
{
label: "Contact", href: "#"},
],
},
]}
copyright="© 2024 Elements Pro Masonry. All rights reserved."
links={[
{
label: "Retaining Walls",
href: "#",
},
],
},
{
title: "Company",
items: [
label: "Privacy", href: "#"},
{
label: "Portfolio",
href: "#",
},
{
label: "Pricing",
href: "#",
},
{
label: "Contact",
href: "#",
},
],
},
]}
copyright="© 2024 Elements Pro Masonry. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
/>
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);