Merge version_1_1781549109606 into main #1

Merged
bender merged 2 commits from version_1_1781549109606 into main 2026-06-15 18:46:20 +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": "Amenities",
"href": "#amenities"
"name": "Amenities", "href": "#amenities"
},
{
"name": "Experience",
"href": "#experience"
"name": "Experience", "href": "#experience"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Blue Sky"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=q1sdk5"
ctaButton={{
text: "Book Now",
href: "#booking",
}}
text: "Book Now", href: "#booking"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,54 +49,34 @@ export default function Layout() {
brand="Blue Sky Hotel"
columns={[
{
title: "Hotel",
items: [
title: "Hotel", items: [
{
label: "Rooms",
href: "#rooms",
},
label: "Rooms", href: "#rooms"},
{
label: "Gallery",
href: "#",
},
label: "Gallery", href: "#"},
{
label: "Offers",
href: "#",
},
label: "Offers", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "Help",
href: "#",
},
label: "Help", href: "#"},
],
},
]}
copyright="© 2024 Blue Sky Hotel. All rights reserved."
links={[
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Facebook",
href: "#",
},
label: "Facebook", href: "#"},
{
label: "LinkedIn",
href: "#",
},
label: "LinkedIn", href: "#"},
]}
/>
</SectionErrorBoundary>