Merge version_1_1782229270276 into main

Merge version_1_1782229270276 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-23 15:42:12 +00:00

View File

@@ -7,94 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Features",
"href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Social Proof",
"href": "#social-proof"
},
{
"name": "Bento Features",
"href": "#bento-features"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Features", href: "#features" },
{ name: "Pricing", href: "#pricing" },
{ name: "About", href: "#about" },
{ name: "Hero", href: "#hero" },
{ name: "Social Proof", href: "#social-proof" },
{ name: "Bento Features", href: "#bento-features" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="gridDots" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="SaaSFlow"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
navItems={navItems} />
logo="SaaSFlow"
logoImageSrc="http://img.b2bpic.net/free-photo/3d-render-sale-discount-banner-with-sapce-your-text-flyer-poster-illustration-design_460848-7086.jpg"
ctaButton={{
text: "Get Started", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="SaaSFlow"
columns={[
{
title: "Product",
items: [
brand="SaaSFlow"
columns={[
{
label: "Features",
href: "#features",
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
],
},
{
label: "Pricing",
href: "#pricing",
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Contact", href: "#contact" },
],
},
],
},
{
title: "Company",
items: [
{
label: "About",
href: "#about",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
copyright="© 2024 SaaSFlow. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
]}
copyright="© 2024 SaaSFlow. All rights reserved."
links={[
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);