From 63dca1bc69b23286851d7b100ac890424ce5530d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 14:45:20 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 62 ++++++++++++++------------------------- 1 file changed, 22 insertions(+), 40 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 76d5399..e0021f3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -2,63 +2,45 @@ import FooterMinimal from '@/components/sections/footer/FooterMinimal'; import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import { Facebook, Instagram, Twitter } from "lucide-react"; import { Outlet } from 'react-router-dom'; import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Rooms", "href": "#rooms" - }, - { - "name": "Dining", "href": "#dining" - }, - { - "name": "About", "href": "#about" - }, - { - "name": "Contact", "href": "#contact" - }, - { - "name": "Hero", "href": "#hero" - }, - { - "name": "Features", "href": "#features" - }, - { - "name": "Metrics", "href": "#metrics" - } -]; + { "name": "Rooms", "href": "#rooms" }, + { "name": "Dining", "href": "#dining" }, + { "name": "About", "href": "#about" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Features", "href": "#features" }, + { "name": "Metrics", "href": "#metrics" } + ]; return ( + logo="The Boma" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=536q38" + ctaButton={{ text: "Book Now", href: "https://www.theboma.co.ke" }} + navItems={navItems} + />
+ brand="The Boma Nairobi" + copyright="© 2025 The Boma Nairobi. All rights reserved." + socialLinks={[ + { icon: "Instagram", href: "#" }, + { icon: "Twitter", href: "#" }, + { icon: "Facebook", href: "#" }, + ]} + />
); -} +} \ No newline at end of file