Merge version_1_1782000393791 into main

Merge version_1_1782000393791 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-21 00:07:37 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() { export default function Layout() {
const navItems = [ const navItems = [
{ {
"name": "Home", "name": "Home", "href": "#hero"
"href": "#hero"
}, },
{ {
"name": "About", "name": "About", "href": "#about"
"href": "#about"
}, },
{ {
"name": "Menu", "name": "Menu", "href": "#menu"
"href": "#menu"
}, },
{ {
"name": "Contact", "name": "Contact", "href": "#contact"
"href": "#contact"
}, },
{ {
"name": "Experience", "name": "Experience", "href": "#experience"
"href": "#experience"
}, },
{ {
"name": "Testimonials", "name": "Testimonials", "href": "#testimonials"
"href": "#testimonials"
}, },
{ {
"name": "Faq", "name": "Faq", "href": "#faq"
"href": "#faq"
} }
]; ];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar"> <SectionErrorBoundary name="navbar">
<NavbarFloatingLogo <NavbarFloatingLogo
logo="Sushi ONCA" logo="Sushi ONCA"
logoImageSrc="http://img.b2bpic.net/free-photo/still-life-food-delivery_23-2149198134.jpg"
ctaButton={{ ctaButton={{
text: "Book Table", text: "Book Table", href: "#contact"}}
href: "#contact",
}}
navItems={navItems} /> navItems={navItems} />
</SectionErrorBoundary> </SectionErrorBoundary>
<main className="flex-grow"> <main className="flex-grow">
@@ -56,42 +48,27 @@ export default function Layout() {
<FooterBasic <FooterBasic
columns={[ columns={[
{ {
title: "Menu", title: "Menu", items: [
items: [
{ {
label: "All Items", label: "All Items", href: "#menu"},
href: "#menu",
},
{ {
label: "Chef's Omakase", label: "Chef's Omakase", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Restaurant", title: "Restaurant", items: [
items: [
{ {
label: "About Us", label: "About Us", href: "#about"},
href: "#about",
},
{ {
label: "Careers", label: "Careers", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ {
label: "FAQ", label: "FAQ", href: "#faq"},
href: "#faq",
},
{ {
label: "Terms & Privacy", label: "Terms & Privacy", href: "#"},
href: "#",
},
], ],
}, },
]} ]}