Merge version_1_1781704844222 into main #1

Merged
bender merged 2 commits from version_1_1781704844222 into main 2026-06-17 14:01:51 +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": "Collection",
"href": "#products"
"name": "Collection", "href": "#products"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,60 +35,46 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="LUXE CLOTHING"
ctaButton={{
text: "Shop Now",
href: "#products",
}}
navItems={navItems} />
logo="LUXE CLOTHING"
logoImageSrc="http://img.b2bpic.net/free-photo/garment-concept-with-copy-space_1194-641493.jpg"
ctaButton={{
text: "Shop Now", href: "#products"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="LUXE CLOTHING"
columns={[
{
title: "Shop",
items: [
brand="LUXE CLOTHING"
columns={[
{
label: "All",
href: "#",
title: "Shop", items: [
{
label: "All", href: "#"},
{
label: "New Arrivals", href: "#"},
],
},
{
label: "New Arrivals",
href: "#",
title: "Company", items: [
{
label: "Our Story", href: "#"},
{
label: "Sustainability", href: "#"},
],
},
],
},
{
title: "Company",
items: [
]}
copyright="© 2024 Luxe Clothing. All rights reserved."
links={[
{
label: "Our Story",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Sustainability",
href: "#",
},
],
},
]}
copyright="© 2024 Luxe Clothing. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}