Merge version_1_1781192972807 into main #1

Merged
bender merged 2 commits from version_1_1781192972807 into main 2026-06-11 15:52:15 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Rooms",
"href": "#rooms"
"name": "Rooms", "href": "#rooms"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
ctaButton={{
text: "Book Now",
href: "#contact",
}}
text: "Book Now", href: "#contact"}}
logo="Luxury Hotel"
logoImageSrc="https://images.pexels.com/photos/12449182/pexels-photo-12449182.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,67 +49,42 @@ export default function Layout() {
brand="Luxury Hotel"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Our Rooms",
href: "#rooms",
},
label: "Our Rooms", href: "#rooms"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
title: "Guest Services",
items: [
title: "Guest Services", items: [
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
{
label: "Concierge",
href: "#",
},
label: "Concierge", href: "#"},
{
label: "Special Offers",
href: "#",
},
label: "Special Offers", href: "#"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "Reservations",
href: "#",
},
label: "Reservations", href: "#"},
{
label: "Newsletter",
href: "#",
},
label: "Newsletter", href: "#"},
],
},
]}
copyright="© 2024 Luxury Hotel. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>