Merge version_1_1782000393791 into main #1

Merged
bender merged 2 commits from version_1_1782000393791 into main 2026-06-21 00:07:37 +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": "Experience",
"href": "#experience"
"name": "Experience", "href": "#experience"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Sushi ONCA"
logoImageSrc="http://img.b2bpic.net/free-photo/still-life-food-delivery_23-2149198134.jpg"
ctaButton={{
text: "Book Table",
href: "#contact",
}}
text: "Book Table", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,42 +48,27 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Menu",
items: [
title: "Menu", items: [
{
label: "All Items",
href: "#menu",
},
label: "All Items", href: "#menu"},
{
label: "Chef's Omakase",
href: "#",
},
label: "Chef's Omakase", href: "#"},
],
},
{
title: "Restaurant",
items: [
title: "Restaurant", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
{
label: "Terms & Privacy",
href: "#",
},
label: "Terms & Privacy", href: "#"},
],
},
]}