Merge version_1_1781544126533 into main

Merge version_1_1781544126533 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-15 17:23:19 +00:00

View File

@@ -7,94 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Shop",
"href": "#products"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
}
];
{ "name": "Shop", "href": "#products" },
{ "name": "About", "href": "#about" },
{ "name": "Contact", "href": "#contact" },
{ "name": "Hero", "href": "#hero" },
{ "name": "Features", "href": "#features" },
{ "name": "Metrics", "href": "#metrics" },
{ "name": "Testimonials", "href": "#testimonials" }
];
return (
<StyleProvider buttonVariant="stagger" siteBackground="noise" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="FreshMart"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
navItems={navItems} />
logo="FreshMart"
logoImageSrc="http://img.b2bpic.net/free-vector/farm-business-card-template-design_742173-21715.jpg"
ctaButton={{
text: "Order Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="FreshMart"
columns={[
{
title: "Company",
items: [
brand="FreshMart"
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Careers", href: "#" },
],
},
{
label: "Careers",
href: "#",
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "Help", href: "#" },
],
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "Help",
href: "#",
},
],
},
]}
copyright="© 2024 FreshMart. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
/>
]}
copyright="© 2024 FreshMart. All rights reserved."
links={[
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);