Merge version_1_1777480381033 into main #1

Merged
bender merged 1 commits from version_1_1777480381033 into main 2026-04-29 16:36:17 +00:00

View File

@@ -6,93 +6,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Services",
"href": "#services"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Social Proof",
"href": "#social-proof"
}
];
{ name: "About", href: "#about" },
{ name: "Services", href: "#services" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Contact", href: "#contact" },
{ name: "Hero", href: "#hero" },
{ name: "Metrics", href: "#metrics" },
{ name: "Social Proof", href: "#social-proof" }
];
return (
<StyleProvider buttonVariant="expand" siteBackground="gridDots" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<NavbarCentered
logo="Greenscape"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
logo="Greenscape"
ctaButton={{
text: "Get Quote", href: "#contact"}}
navItems={navItems}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterSimpleMedia
brand="Greenscape"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "#about",
},
{
label: "Careers",
href: "#",
},
],
},
{
title: "Services",
items: [
{
label: "Design",
href: "#services",
},
{
label: "Lawn Care",
href: "#services",
},
],
},
]}
copyright="© 2024 Greenscape Landscaping."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gsn9im"
imageAlt="corporate landscaping partner logo"
/>
brand="Greenscape"
columns={[
{
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Careers", href: "#" },
],
},
{
title: "Services", items: [
{ label: "Design", href: "#services" },
{ label: "Lawn Care", href: "#services" },
],
},
]}
copyright="© 2024 Greenscape Landscaping."
links={[
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gsn9im"
/>
</StyleProvider>
);
}