From 3a604f92c5cd13acb53b262546bbe924f6b84e3c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 21 Jun 2026 14:03:24 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 75 ++++++++++++++++----------------------- 1 file changed, 31 insertions(+), 44 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 5ddb492..24acf75 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -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 ( + 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} + />
+ 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" + />
);