Merge version_1_1781475596588 into main #1

Merged
bender merged 2 commits from version_1_1781475596588 into main 2026-06-14 22:21:11 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Stays",
"href": "#"
"name": "Stays", "href": "#"
},
{
"name": "Experiences",
"href": "#"
"name": "Experiences", "href": "#"
},
{
"name": "Become a Host",
"href": "#"
"name": "Become a Host", "href": "#"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Comparison",
"href": "#comparison"
"name": "Comparison", "href": "#comparison"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="VacationMarket"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=ir6am9"
ctaButton={{
text: "Sign Up",
href: "#",
}}
text: "Sign Up", href: "#"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,63 +49,40 @@ export default function Layout() {
brand="VacationMarket"
columns={[
{
title: "Product",
items: [
title: "Product", items: [
{
label: "Stays",
href: "#",
},
label: "Stays", href: "#"},
{
label: "Experiences",
href: "#",
},
label: "Experiences", href: "#"},
{
label: "Host Tools",
href: "#",
},
label: "Host Tools", href: "#"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#",
},
label: "About", href: "#"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Press",
href: "#",
},
label: "Press", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
],
},
]}
copyright="© 2024 VacationMarket Inc. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
]}
/>
</SectionErrorBoundary>