From 1ae5e5bfbc4292c61c9b985f4aa43186ecd9f993 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 23:55:31 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 85 +++++++++++++++------------------------ 1 file changed, 33 insertions(+), 52 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f282468..3deb09a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,55 +35,43 @@ export default function Layout() { + logo="Princess Pancakes" + logoImageSrc="http://img.b2bpic.net/free-vector/set-logo-badge-design-vectors_53876-35203.jpg" + ctaButton={{ + text: "Visit Us", href: "#contact"}} + navItems={navItems} + />
+ label: "Privacy Policy", href: "#"}, + ]} + /> ); -- 2.49.1