Merge version_1_1781381968301 into main

Merge version_1_1781381968301 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-13 20:21:03 +00:00

View File

@@ -7,92 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Menu",
"href": "#features"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ name: "Home", href: "#hero" },
{ name: "About", href: "#about" },
{ name: "Menu", href: "#features" },
{ name: "Contact", href: "#contact" },
{ name: "Metrics", href: "#metrics" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Faq", href: "#faq" }
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="gridDots" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Cafe Artisan"
ctaButton={{
text: "Book Table",
href: "#contact",
}}
navItems={navItems} />
logo="Cafe Artisan"
logoImageSrc="http://img.b2bpic.net/free-vector/set-vintage-coffee-emblems_1284-46478.jpg"
ctaButton={{
text: "Book Table", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Cafe",
items: [
columns={[
{
label: "About Us",
href: "#about",
title: "Cafe", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Menu", href: "#features" },
{ label: "Careers", href: "#" },
],
},
{
label: "Our Menu",
href: "#features",
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "FAQs", href: "#faq" },
{ label: "Privacy", href: "#" },
],
},
{
label: "Careers",
href: "#",
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "FAQs",
href: "#faq",
},
{
label: "Privacy",
href: "#",
},
],
},
]}
leftText="© 2024 Cafe Artisan. All rights reserved."
rightText="Crafted with love and coffee."
/>
]}
leftText="© 2024 Cafe Artisan. All rights reserved."
rightText="Crafted with love and coffee."
/>
</SectionErrorBoundary>
</StyleProvider>
);