Merge version_1_1782089866915 into main #1

Merged
bender merged 2 commits from version_1_1782089866915 into main 2026-06-22 00:58:50 +00:00

View File

@@ -7,120 +7,63 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Collections",
"href": "#trending"
},
{
"name": "Style Guide",
"href": "#features"
},
{
"name": "Reviews",
"href": "#testimonials"
},
{
"name": "FAQ",
"href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "About Split",
"href": "#about-split"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Collections", href: "#trending" },
{ name: "Style Guide", href: "#features" },
{ name: "Reviews", href: "#testimonials" },
{ name: "FAQ", href: "#faq" },
{ name: "Hero", href: "#hero" },
{ name: "About Split", href: "#about-split" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="stagger" siteBackground="gridDots" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Tops Szn"
ctaButton={{
text: "Shop Now",
href: "#hero",
}}
navItems={navItems} />
logo="Tops Szn"
logoImageSrc="http://img.b2bpic.net/free-vector/illustration-boutique-shop-logo-stamp-banner_53876-6848.jpg"
ctaButton={{
text: "Shop Now", href: "#hero"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
imageSrc="http://img.b2bpic.net/free-photo/acrylic-paint-textured-background-pink-abstract-style-creative-art_53876-134252.jpg"
brand="Tops Szn"
columns={[
{
title: "Shop",
items: [
imageSrc="http://img.b2bpic.net/free-photo/acrylic-paint-textured-background-pink-abstract-style-creative-art_53876-134252.jpg"
brand="Tops Szn"
columns={[
{
label: "New Arrivals",
href: "#",
title: "Shop", items: [
{ label: "New Arrivals", href: "#" },
{ label: "Trending", href: "#" },
{ label: "Best Sellers", href: "#" },
],
},
{
label: "Trending",
href: "#",
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Returns", href: "#" },
{ label: "Size Guide", href: "#" },
],
},
{
label: "Best Sellers",
href: "#",
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#" },
],
},
],
},
{
title: "Support",
items: [
{
label: "Help Center",
href: "#",
},
{
label: "Returns",
href: "#",
},
{
label: "Size Guide",
href: "#",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "#",
},
{
label: "Careers",
href: "#",
},
{
label: "Contact",
href: "#",
},
],
},
]}
copyright="© 2024 Tops Szn. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
/>
]}
copyright="© 2024 Tops Szn. All rights reserved."
links={[
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);