From e2ac7224197d8355a28f92ace83614a7b46e822a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 19 May 2026 16:50:32 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 105 ++++++++++++++------------------------ 1 file changed, 39 insertions(+), 66 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c6b80ee..0c1d7c6 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,124 +1,97 @@ -import FooterBrand from '@/components/sections/footer/FooterBrand'; +import FooterBasic from '@/components/sections/footer/FooterBasic'; import NavbarFloating from '@/components/ui/NavbarFloating'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; -import { StyleProvider } from "@/components/ui/StyleProvider"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "About Us", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Rooms & Suites", - "href": "#rooms" + "name": "Rooms", "href": "#rooms" }, { - "name": "Amenities", - "href": "#amenities" + "name": "Amenities", "href": "#amenities" }, { - "name": "Gallery", - "href": "#gallery" + "name": "Guest Reviews", "href": "#testimonials" }, { - "name": "Contact", - "href": "#contact" + "name": "FAQ", "href": "#faq" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Contact", "href": "#contact" } ]; return ( - +
- -
+ ); } -- 2.49.1