Update src/components/Layout.tsx

This commit is contained in:
2026-06-17 14:01:48 +00:00
parent f5ef537c76
commit 9ff2c481a5

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,61 +35,46 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="LUXE CLOTHING"
logoImageSrc="https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop"
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>
);
}
}