Merge version_1_1781392527653 into main

Merge version_1_1781392527653 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-13 23:16:24 +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": "Hours",
"href": "#hours"
"name": "Hours", "href": "#hours"
},
{
"name": "Proof",
"href": "#proof"
"name": "Proof", "href": "#proof"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Cuisine Cafe"
logoImageSrc="http://img.b2bpic.net/free-vector/vintage-golden-logo_53876-67468.jpg"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
text: "Order Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,34 +49,24 @@ export default function Layout() {
brand="Cuisine Cafe"
columns={[
{
title: "Info",
items: [
title: "Info", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Our Menu",
href: "#menu",
},
label: "Our Menu", href: "#menu"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
],
},
]}
copyright="© 2024 Cuisine Cafe, Savannah, GA."
links={[
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>