Merge version_1_1782051668949 into main

Merge version_1_1782051668949 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-21 14:22:19 +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": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Menu",
"href": "#menu"
"name": "Menu", "href": "#menu"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Bhetghat"
logoImageSrc="http://img.b2bpic.net/free-vector/happy-bhai-dooj-festival-celebration-card-with-tilak-design-vector_1055-19115.jpg"
ctaButton={{
text: "Book Table",
href: "#contact",
}}
text: "Book Table", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,67 +49,42 @@ export default function Layout() {
brand="Bhetghat Restaurant"
columns={[
{
title: "Menu",
items: [
title: "Menu", items: [
{
label: "Thali Sets",
href: "#menu",
},
label: "Thali Sets", href: "#menu"},
{
label: "Momo Specials",
href: "#menu",
},
label: "Momo Specials", href: "#menu"},
{
label: "Beverages",
href: "#menu",
},
label: "Beverages", href: "#menu"},
],
},
{
title: "Location",
items: [
title: "Location", items: [
{
label: "Chaukitol -2",
href: "#",
},
label: "Chaukitol -2", href: "#"},
{
label: "Hetauda 44107",
href: "#",
},
label: "Hetauda 44107", href: "#"},
{
label: "Nepal",
href: "#",
},
label: "Nepal", href: "#"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Facebook",
href: "#",
},
label: "Facebook", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "TripAdvisor",
href: "#",
},
label: "TripAdvisor", href: "#"},
],
},
]}
copyright="© 2024 Bhetghat Restaurant. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>