Merge version_1_1782210744491 into main #1

Merged
bender merged 1 commits from version_1_1782210744491 into main 2026-06-23 10:33:19 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Our Curtains",
"href": "#products"
"name": "Our Curtains", "href": "#products"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,59 +35,45 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="DraperyElite"
ctaButton={{
text: "Get a Quote",
href: "https://wa.me/yournumber",
}}
navItems={navItems} />
logo="DraperyElite"
logoImageSrc="http://img.b2bpic.net/free-vector/flat-design-nerd-logo-template_23-2149204341.jpg"
ctaButton={{
text: "Get a Quote", href: "https://wa.me/yournumber"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="DraperyElite"
columns={[
{
title: "Company",
items: [
brand="DraperyElite"
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Catalog", href: "#products"},
],
},
{
label: "Catalog",
href: "#products",
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms", href: "#"},
],
},
],
},
{
title: "Legal",
items: [
]}
copyright="© 2024 DraperyElite. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Terms",
href: "#",
},
],
},
]}
copyright="© 2024 DraperyElite. All rights reserved."
links={[
{
label: "Instagram",
href: "#",
},
{
label: "Facebook",
href: "#",
},
]}
/>
label: "Facebook", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);