Merge version_1_1782112286302 into main #1

Merged
bender merged 2 commits from version_1_1782112286302 into main 2026-06-22 07:12:33 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarDropdown
logo="LA BOHÉM"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
text: "Book Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,33 +48,24 @@ export default function Layout() {
brand="LA BOHÉM"
columns={[
{
title: "Studio",
items: [
title: "Studio", items: [
{
label: "Lönnrotinkatu 16",
href: "#",
},
label: "Lönnrotinkatu 16", href: "#"},
{
label: "Kamppi, Helsinki",
href: "#",
},
label: "Kamppi, Helsinki", href: "#"},
],
},
{
title: "Social",
items: [
title: "Social", items: [
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Pinterest",
href: "#",
},
label: "Pinterest", href: "#"},
],
},
]}
copyright="© 2016-2024 LA BOHÉM. All rights reserved."
links={[]}
/>
</SectionErrorBoundary>
</StyleProvider>