From c6c0f8b0fc68c3d5d06786ae896892918e074384 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 15:42:09 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 103 ++++++++++++-------------------------- 1 file changed, 31 insertions(+), 72 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3fc723c..c25f778 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -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 ( + 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} + />
+ ]} + copyright="© 2024 SaaSFlow. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ]} + />
);