From dd908f567b9fca7fa0bcd6d84072985d5bb25c1f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 15 Jun 2026 12:44:45 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 60 ++++++++++++++------------------------- 1 file changed, 21 insertions(+), 39 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 9c8cd8a..2f63721 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -2,62 +2,44 @@ 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": "Home", "href": "#hero" - }, - { - "name": "Services", "href": "#services" - }, - { - "name": "Gallery", "href": "#gallery" - }, - { - "name": "Reviews", "href": "#reviews" - }, - { - "name": "Contact", "href": "#contact" - }, - { - "name": "About", "href": "#about" - }, - { - "name": "Why Choose", "href": "#why-choose" - } -]; + { "name": "Home", "href": "#hero" }, + { "name": "Services", "href": "#services" }, + { "name": "Gallery", "href": "#gallery" }, + { "name": "Reviews", "href": "#reviews" }, + { "name": "Contact", "href": "#contact" }, + { "name": "About", "href": "#about" }, + { "name": "Why Choose", "href": "#why-choose" } + ]; return ( + logo="Sarwat's Beauty Lounge" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=y3gbyw" + ctaButton={{ text: "Book Now", href: "#contact" }} + navItems={navItems} + />
+ brand="Sarwat's Beauty Lounge" + copyright="© 2024 Sarwat's Beauty Lounge. All rights reserved." + socialLinks={[ + { icon: "Instagram", href: "#" }, + { icon: "Facebook", href: "#" }, + { icon: "Twitter", href: "#" } + ]} + />
); -- 2.49.1