Merge version_1_1781900486285 into main #1

Merged
bender merged 2 commits from version_1_1781900486285 into main 2026-06-19 20:22:42 +00:00

View File

@@ -7,121 +7,64 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#"
},
{
"name": "Products",
"href": "#products"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Support",
"href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Home", href: "/" },
{ name: "Products", href: "#products" },
{ name: "Features", href: "#features" },
{ name: "Support", href: "#faq" },
{ name: "Hero", href: "#hero" },
{ name: "About", href: "#about" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="shift" siteBackground="floatingGradient" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Supply Vendor"
ctaButton={{
text: "Shop Now",
href: "#products",
}}
navItems={navItems} />
logo="Supply Vendor"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=co8od8"
ctaButton={{
text: "Shop Now", href: "#products"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Supply Vendor"
columns={[
{
title: "Explore",
items: [
brand="Supply Vendor"
columns={[
{
label: "All Products",
href: "#products",
title: "Explore", items: [
{ label: "All Products", href: "#products" },
{ label: "Latest Releases", href: "#" },
{ label: "Deals", href: "#" },
],
},
{
label: "Latest Releases",
href: "#",
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Sustainability", href: "#" },
{ label: "Careers", href: "#" },
],
},
{
label: "Deals",
href: "#",
title: "Support", items: [
{ label: "Contact", href: "#" },
{ label: "Shipping Info", href: "#" },
{ label: "Privacy Policy", href: "#" },
],
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "#",
},
{
label: "Sustainability",
href: "#",
},
{
label: "Careers",
href: "#",
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "#",
},
{
label: "Shipping Info",
href: "#",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
copyright="© 2024 Supply Vendor Inc. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
{
label: "Instagram",
href: "#",
},
]}
imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=co8od8"
/>
]}
copyright="© 2024 Supply Vendor Inc. All rights reserved."
links={[
{ label: "Twitter", href: "#" },
{ label: "Instagram", href: "#" },
]}
imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=co8od8"
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}