Merge version_1_1782034455188 into main #1

Merged
bender merged 2 commits from version_1_1782034455188 into main 2026-06-21 09:35:21 +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": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -42,60 +35,47 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Drop Coffee Bar"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
navItems={navItems} />
logo="Drop Coffee Bar"
logoImageSrc="http://img.b2bpic.net/free-vector/coffee-shop-retro-logo-collection_23-2148399791.jpg"
ctaButton={{
text: "Order Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Drop Coffee Bar"
columns={[
{
title: "Location",
items: [
brand="Drop Coffee Bar"
columns={[
{
label: "Kathiawar Society, Karachi",
href: "#",
title: "Location", items: [
{
label: "Kathiawar Society, Karachi", href: "#"},
],
},
],
},
{
title: "Hours",
items: [
{
label: "Open Daily until 2 AM",
href: "#",
title: "Hours", items: [
{
label: "Open Daily until 2 AM", href: "#"},
],
},
],
},
{
title: "Contact",
items: [
{
label: "(021) 37120763",
href: "tel:02137120763",
title: "Contact", items: [
{
label: "(021) 37120763", href: "tel:02137120763"},
],
},
],
},
]}
copyright="© 2024 Drop Coffee Bar. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
]}
copyright="© 2024 Drop Coffee Bar. All rights reserved."
links={[
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);