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 ( - +
- -
+ ); }