Merge version_1_1780493796410 into main #1

Merged
bender merged 2 commits from version_1_1780493796410 into main 2026-06-03 13:38:13 +00:00

View File

@@ -8,36 +8,28 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Rooms",
"href": "#accommodation"
"name": "Rooms", "href": "#accommodation"
},
{
"name": "Experiences",
"href": "#experiences"
"name": "Experiences", "href": "#experiences"
},
{
"name": "Offers",
"href": "#offers"
"name": "Offers", "href": "#offers"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "FAQs",
"href": "#faq"
"name": "FAQs", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -47,10 +39,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
ctaButton={{
text: "Book Now",
href: "#contact",
}}
text: "Book Now", href: "#contact"}}
logo="The Grand Hotel"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=6xbdeo"
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -63,57 +54,35 @@ export default function Layout() {
{
items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Press",
href: "#",
},
label: "Press", href: "#"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
{
items: [
{
label: "Rooms & Suites",
href: "#accommodation",
},
label: "Rooms & Suites", href: "#accommodation"},
{
label: "Dining",
href: "#experiences",
},
label: "Dining", href: "#experiences"},
{
label: "Spa & Wellness",
href: "#experiences",
},
label: "Spa & Wellness", href: "#experiences"},
{
label: "Events",
href: "#experiences",
},
label: "Events", href: "#experiences"},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
{
label: "Sitemap",
href: "#",
},
label: "Sitemap", href: "#"},
],
},
]}