Merge version_1_1782050476088 into main #4

Merged
bender merged 1 commits from version_1_1782050476088 into main 2026-06-21 14:03:27 +00:00

View File

@@ -7,64 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About", "href": "#about"
},
{
"name": "Features", "href": "#features"
},
{
"name": "Products", "href": "#products"
},
{
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials", "href": "#testimonials"
}
];
{ name: "About", href: "#about" },
{ name: "Features", href: "#features" },
{ name: "Products", href: "#products" },
{ name: "Hero", href: "#hero" },
{ name: "Metrics", href: "#metrics" },
{ name: "Testimonials", href: "#testimonials" }
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="noiseGradient" heroBackground="lightRaysCorner">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="FinCommerce"
logoImageSrc="http://img.b2bpic.net/free-photo/25th-years-anniversary-celebration-3d-render_460848-8295.jpg"
ctaButton={{
text: "Get Started", href: "#contact"}}
navItems={navItems} />
logo="FinCommerce"
logoImageSrc="http://img.b2bpic.net/free-photo/25th-years-anniversary-celebration-3d-render_460848-8295.jpg"
ctaButton={{
text: "Get Started", href: "#contact"
}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="FinCommerce"
columns={[
{
title: "Company", items: [
brand="FinCommerce"
columns={[
{
label: "About", href: "#"},
],
},
{
title: "Legal", items: [
title: "Company", items: [
{ label: "About", href: "#" }
]
},
{
label: "Privacy", href: "#"},
],
},
],
copyright="© 2024 FinCommerce. All rights reserved."
links={[
{
label: "Twitter", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-photo/25th-years-anniversary-celebration-3d-render_460848-8295.jpg"
/>
title: "Legal", items: [
{ label: "Privacy", href: "#" }
]
}
]}
copyright="© 2024 FinCommerce. All rights reserved."
links={[
{ label: "Twitter", href: "#" }
]}
imageSrc="http://img.b2bpic.net/free-photo/25th-years-anniversary-celebration-3d-render_460848-8295.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);