Merge version_1_1781544936949 into main #1

Merged
bender merged 2 commits from version_1_1781544936949 into main 2026-06-15 17:36:41 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Menu",
"href": "#menu"
"name": "Menu", "href": "#menu"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Reviews",
"href": "#reviews"
"name": "Reviews", "href": "#reviews"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -42,55 +35,43 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Flying Pig"
ctaButton={{
text: "Book Us",
href: "#contact",
}}
navItems={navItems} />
logo="Flying Pig"
logoImageSrc="http://img.b2bpic.net/free-vector/barbecue-menu-graphic-elements_23-2147495136.jpg"
ctaButton={{
text: "Book Us", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="The Flying Pig"
columns={[
{
title: "Explore",
items: [
brand="The Flying Pig"
columns={[
{
label: "Menu",
href: "#menu",
title: "Explore", items: [
{
label: "Menu", href: "#menu"},
{
label: "About Us", href: "#about"},
],
},
{
label: "About Us",
href: "#about",
title: "Connect", items: [
{
label: "Reviews", href: "#reviews"},
{
label: "Contact", href: "#contact"},
],
},
],
},
{
title: "Connect",
items: [
]}
copyright="© 2024 The Flying Pig Food Truck. All rights reserved."
links={[
{
label: "Reviews",
href: "#reviews",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
copyright="© 2024 The Flying Pig Food Truck. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
]}
/>
label: "Privacy Policy", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);