Merge version_1_1782179667769 into main

Merge version_1_1782179667769 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-23 01:55:36 +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": "#menu"
"name": "Menu", "href": "#menu"
},
{
"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": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Magpies Grill"
logoImageSrc="http://img.b2bpic.net/free-photo/top-view-words-food-shape_23-2151900855.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="Magpies Grill"
columns={[
{
title: "Menu",
items: [
title: "Menu", items: [
{
label: "Dinner",
href: "#menu",
},
label: "Dinner", href: "#menu"},
{
label: "Drinks",
href: "#menu",
},
label: "Drinks", href: "#menu"},
{
label: "Lunch",
href: "#menu",
},
label: "Lunch", href: "#menu"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Events",
href: "#",
},
label: "Events", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "FAQs",
href: "#faq",
},
label: "FAQs", href: "#faq"},
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
],
},
]}
copyright="© 2024 Magpies Grill. All rights reserved."
links={[
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Facebook",
href: "#",
},
label: "Facebook", href: "#"},
]}
/>
</SectionErrorBoundary>