Merge version_1_1782258880667 into main #1

Merged
bender merged 1 commits from version_1_1782258880667 into main 2026-06-23 23:55: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": "Menu",
"href": "#menu"
"name": "Menu", "href": "#menu"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,55 +35,43 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Princess Pancakes"
ctaButton={{
text: "Visit Us",
href: "#contact",
}}
navItems={navItems} />
logo="Princess Pancakes"
logoImageSrc="http://img.b2bpic.net/free-vector/set-logo-badge-design-vectors_53876-35203.jpg"
ctaButton={{
text: "Visit Us", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Princess Pancakes"
columns={[
{
title: "Links",
items: [
brand="Princess Pancakes"
columns={[
{
label: "Menu",
href: "#menu",
title: "Links", items: [
{
label: "Menu", href: "#menu"},
{
label: "About", href: "#about"},
],
},
{
label: "About",
href: "#about",
title: "Connect", items: [
{
label: "Call Us", href: "tel:7758307639"},
{
label: "Email", href: "mailto:hello@princesspancakes.com"},
],
},
],
},
{
title: "Connect",
items: [
]}
copyright="© 2024 Princess Pancakes. All rights reserved."
links={[
{
label: "Call Us",
href: "tel:7758307639",
},
{
label: "Email",
href: "mailto:hello@princesspancakes.com",
},
],
},
]}
copyright="© 2024 Princess Pancakes. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
]}
/>
label: "Privacy Policy", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);