Merge version_1_1781566241177 into main #1

Merged
bender merged 2 commits from version_1_1781566241177 into main 2026-06-15 23:31:42 +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": "Menu",
"href": "#features"
"name": "Menu", "href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,63 +35,46 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Top OTh Hill"
ctaButton={{
text: "Reserve Now",
href: "#contact",
}}
navItems={navItems} />
logo="Top OTh Hill"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=d072xa"
ctaButton={{
text: "Reserve Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Top OTh Hill Tavern"
columns={[
{
title: "Menu",
items: [
brand="Top OTh Hill Tavern"
columns={[
{
label: "Breakfast",
href: "#",
title: "Menu", items: [
{
label: "Breakfast", href: "#"},
{
label: "Lunch", href: "#"},
{
label: "Dinner", href: "#"},
],
},
{
label: "Lunch",
href: "#",
title: "Company", items: [
{
label: "About Us", href: "#"},
{
label: "Contact", href: "#contact"},
],
},
]}
copyright="© 2024 Top OTh Hill Tavern. All rights reserved."
links={[
{
label: "Dinner",
href: "#",
},
],
},
{
title: "Company",
items: [
label: "Privacy Policy", href: "#"},
{
label: "About Us",
href: "#",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
copyright="© 2024 Top OTh Hill Tavern. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);