Merge version_1_1781444860567 into main #1

Merged
bender merged 2 commits from version_1_1781444860567 into main 2026-06-14 13:48:46 +00:00

View File

@@ -9,32 +9,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": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,35 +36,29 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Tasty Stall"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
navItems={navItems} />
logo="Tasty Stall"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=dquoks"
ctaButton={{
text: "Order Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="Tasty Stall"
copyright="© 2024 Tasty Stall Inc. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#",
},
{
icon: Facebook,
href: "#",
},
{
icon: Twitter,
href: "#",
},
]}
/>
brand="Tasty Stall"
copyright="© 2024 Tasty Stall Inc. All rights reserved."
socialLinks={[
{
icon: "Instagram", href: "#"},
{
icon: "Facebook", href: "#"},
{
icon: "Twitter", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);