Merge version_1_1781381148774 into main #1

Merged
bender merged 2 commits from version_1_1781381148774 into main 2026-06-13 20:06:58 +00:00

View File

@@ -7,89 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "בית",
"href": "#hero"
},
{
"name": "אודות",
"href": "#about"
},
{
"name": "תפריט",
"href": "#menu"
},
{
"name": "צרו קשר",
"href": "#contact"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ "name": "בית", "href": "#hero" },
{ "name": "אודות", "href": "#about" },
{ "name": "תפריט", "href": "#menu" },
{ "name": "צרו קשר", "href": "#contact" },
{ "name": "Features", "href": "#features" },
{ "name": "Testimonials", "href": "#testimonials" },
{ "name": "Faq", "href": "#faq" }
];
return (
<StyleProvider buttonVariant="bubble" siteBackground="noise" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="קפה אמירה"
ctaButton={{
text: "הזמן מקום",
href: "#contact",
}}
navItems={navItems} />
logo="קפה אמירה"
logoImageSrc="http://img.b2bpic.net/free-vector/elegant-coffee-shop-typography-logo_742173-4123.jpg"
ctaButton={{
text: "הזמן מקום", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "ניווט",
items: [
columns={[
{
label: "בית",
href: "#hero",
title: "ניווט", items: [
{ label: "בית", href: "#hero" },
{ label: "אודות", href: "#about" },
{ label: "תפריט", href: "#menu" },
],
},
{
label: "אודות",
href: "#about",
title: "קשר", items: [
{ label: "050-1234567", href: "tel:0501234567" },
{ label: "info@cafeamira.co.il", href: "mailto:info@cafeamira.co.il" },
],
},
{
label: "תפריט",
href: "#menu",
},
],
},
{
title: "קשר",
items: [
{
label: "050-1234567",
href: "tel:0501234567",
},
{
label: "info@cafeamira.co.il",
href: "mailto:info@cafeamira.co.il",
},
],
},
]}
leftText="© 2024 קפה אמירה"
rightText="כל הזכויות שמורות"
/>
]}
leftText="© 2024 קפה אמירה"
rightText="כל הזכויות שמורות"
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}