Merge version_1_1782113490706 into main #1

Merged
bender merged 2 commits from version_1_1782113490706 into main 2026-06-22 07:32:51 +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": "Gallery",
"href": "#gallery"
"name": "Gallery", "href": "#gallery"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
}
];
@@ -42,81 +35,58 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Cova Specialty Coffee"
ctaButton={{
text: "Order Online",
href: "/order",
}}
navItems={navItems} />
logo="Cova Specialty Coffee"
logoImageSrc="http://img.b2bpic.net/free-photo/latte-art-coffee-cup-spoon_9975-135795.jpg"
ctaButton={{
text: "Order Online", href: "/order"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Cova Specialty Coffee"
columns={[
{
title: "Explore",
items: [
brand="Cova Specialty Coffee"
columns={[
{
label: "About Us",
href: "#about",
title: "Explore", items: [
{
label: "About Us", href: "#about"},
{
label: "Our Menu", href: "#menu"},
{
label: "Reserve Table", href: "/reservations"},
],
},
{
label: "Our Menu",
href: "#menu",
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
{
label: "Reserve Table",
href: "/reservations",
title: "Social", items: [
{
label: "Instagram", href: "#"},
{
label: "Twitter", href: "#"},
{
label: "Facebook", href: "#"},
],
},
],
},
{
title: "Legal",
items: [
]}
copyright="© 2024 Cova Specialty Coffee. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
],
},
{
title: "Social",
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
{
label: "Facebook",
href: "#",
},
],
},
]}
copyright="© 2024 Cova Specialty Coffee. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/latte-art-coffee-cup-spoon_9975-135795.jpg"
/>
label: "Terms", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-photo/latte-art-coffee-cup-spoon_9975-135795.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);