From ea5a8a2a12883e694c72fa092ec3f87c70d49df7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 21:35:42 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 91 ++++++++++++--------------------------- 1 file changed, 27 insertions(+), 64 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index bc5bea4..a6584ee 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,86 +7,49 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { "name": "About", "href": "#about" }, + { "name": "Services", "href": "#services" }, + { "name": "Pricing", "href": "#pricing" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Features", "href": "#features" }, + { "name": "Testimonials", "href": "#testimonials" } + ]; return ( + logo="Bios Spa" + logoImageSrc="http://img.b2bpic.net/free-photo/meditation-healthcare-lotus-flower-graphic-concept_53876-132563.jpg" + ctaButton={{ + text: "Book Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + />
);