7 Commits

Author SHA1 Message Date
f9c589365c Update src/app/menu/page.tsx 2026-03-06 15:23:06 +00:00
ac9c8c7697 Merge version_2 into main
Merge version_2 into main
2026-03-06 15:19:20 +00:00
5205f5d877 Update src/app/page.tsx 2026-03-06 15:19:16 +00:00
66026c276c Update src/app/layout.tsx 2026-03-06 15:19:16 +00:00
773705e19d Merge version_1 into main
Merge version_1 into main
2026-03-06 15:18:08 +00:00
d182ba619e Merge version_1 into main
Merge version_1 into main
2026-03-06 15:17:12 +00:00
ccd51a18d4 Merge version_1 into main
Merge version_1 into main
2026-03-06 15:14:45 +00:00
3 changed files with 122 additions and 164 deletions

View File

@@ -1,69 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Halant } from "next/font/google"; import { Heebo } from 'next/font/google';
import { Inter } from "next/font/google"; import './globals.css';
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const heebo = Heebo({ subsets: ['hebrew'] });
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "רינגלבלום 13 בר - המקום הטוב בבאר שבע", title: 'רינגלבלום 13 - בר ומסעדה בבאר שבע',
description: "רינגלבלום 13 בר ומסעדה בבאר שבע - אוכל איכותי, משקאות, אווירה צעירה. דירוג 4.9 כוכבים מ-624 ביקורות. הזמן עכשיו!", description: 'בר ומסעדה עם אוכל איכותי, מוזיקה מעולה, וייב צעיר. הזמנו כבר!',
keywords: "בר באר שבע, מסעדה באר שבע, אוכל טבעוני, חיי לילה, רינגלבלום",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "רינגלבלום 13 בר - המקום הטוב בבאר שבע",
description: "בר ומסעדה עם אוכל איכותי ואווירה מעולה",
type: "website",
siteName: "רינגלבלום 13",
images: [
{
url: "http://img.b2bpic.net/free-photo/nightlife-people-having-fun-bars-clubs_23-2149088580.jpg",
alt: "אווירת בר רינגלבלום 13",
},
],
},
twitter: {
card: "summary_large_image",
title: "רינגלבלום 13 בר",
description: "בר ומסעדה עם אוכל איכותי ואווירה מעולה",
images: ["http://img.b2bpic.net/free-photo/nightlife-people-having-fun-bars-clubs_23-2149088580.jpg"],
},
}; };
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="he" suppressHydrationWarning> <html lang="he" dir="rtl">
<ServiceWrapper> <body className={heebo.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1431,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -14,7 +14,7 @@ export default function MenuPage() {
borderRadius="rounded" borderRadius="rounded"
contentWidth="medium" contentWidth="medium"
sizing="largeSmallSizeLargeTitles" sizing="largeSmallSizeLargeTitles"
background="noiseDiagonalGradient" background="circleGradient"
cardStyle="gradient-mesh" cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow" primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered" secondaryButtonStyle="layered"
@@ -26,76 +26,64 @@ export default function MenuPage() {
navItems={[ navItems={[
{ name: "בית", id: "/" }, { name: "בית", id: "/" },
{ name: "תפריט", id: "/menu" }, { name: "תפריט", id: "/menu" },
{ name: "עלינו", id: "/" }, { name: "עלינו", id: "/about" },
{ name: "ביקורות", id: "/" }, { name: "ביקורות", id: "/testimonials" },
]} ]}
button={{ button={{
text: "הזמן עכשיו", text: "הזמן עכשיו", href: "#contact"
href: "#contact",
}} }}
animateOnLoad={true} animateOnLoad={true}
/> />
</div> </div>
<div id="products" data-section="products"> <div id="products" data-section="products" className="pt-20">
<ProductCardFour <ProductCardFour
title="התפריט המלא שלנו" title="התפריט המלא שלנו"
description="גלה את כל המנות המיוחדות שלנו - מבורגרים, עראיס, קרפצ'יו, עוף, שווארמה, וחמוצים ביתיים. כל מנה מוכנה בעבור לך בעיצוב טרי ובטעם אותנטי." description="גלה את כל המנות המיוחדות שלנו - בשריות, טבעוניות, דגים, עוף ועוד. כל מנה מוכנה בעבודת יד עם מרכיבים טריים באיכות הגבוהה ביותר."
tag="כל המנות" tag="תפריט"
tagIcon={UtensilsCrossed} tagIcon={UtensilsCrossed}
tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
id: "1", id: "1", name: "המבורגר עסיסי", price: "₪45", variant: "בחירת בשר אנגוס וטחינה", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-veggie-burger-with-black-buns-cutting-board_23-2148784540.jpg?_wi=1", imageAlt: "המבורגר עסיסי"
name: "המבורגר עסיסי",
price: "₪45",
variant: "בחירת בשר אנגוס וטחינה",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-veggie-burger-with-black-buns-cutting-board_23-2148784540.jpg?_wi=2",
imageAlt: "המבורגר עסיסי",
}, },
{ {
id: "2", id: "2", name: "עראיס מיוחל", price: "₪38", variant: "בשר טחון עם תבלינים מרוקאים", imageSrc: "http://img.b2bpic.net/free-photo/creative-composition-tasty-food_23-2148949081.jpg?_wi=1", imageAlt: "עראיס מיוחל"
name: "עראיס מיוחל",
price: "₪38",
variant: "בשר טחון עם תבלינים מרוקאיים",
imageSrc: "http://img.b2bpic.net/free-photo/creative-composition-tasty-food_23-2148949081.jpg?_wi=2",
imageAlt: "עראיס מיוחל",
}, },
{ {
id: "3", id: "3", name: "קרפצ'יו בשר", price: "₪52", variant: "בשר טרי עם שמן זית וביצים", imageSrc: "http://img.b2bpic.net/free-photo/red-cabbage-dish-wooden-plate_23-2148224118.jpg?_wi=1", imageAlt: "קרפצ'יו בשר"
name: "קרפצ'יו בשר",
price: "₪52",
variant: "בשר טרי עם שמן זית וביצים",
imageSrc: "http://img.b2bpic.net/free-photo/red-cabbage-dish-wooden-plate_23-2148224118.jpg?_wi=2",
imageAlt: "קרפצ'יו בשר",
}, },
{ {
id: "4", id: "4", name: "עוף קריספי", price: "₪42", variant: "כנפיים ודדים מטוגנים בזהב", imageSrc: "http://img.b2bpic.net/free-photo/crispy-chicken-drumsticks-grilled-kfc-style-with-crackers_114579-765.jpg?_wi=1", imageAlt: "עוף קריספי"
name: "עוף קריספי",
price: "₪42",
variant: "כנפיים ודדים מטוגנים בזהב",
imageSrc: "http://img.b2bpic.net/free-photo/crispy-chicken-drumsticks-grilled-kfc-style-with-crackers_114579-765.jpg?_wi=2",
imageAlt: "עוף קריספי",
}, },
{ {
id: "5", id: "5", name: "שווארמה טבעונית", price: "₪28", variant: "ירקות עם תבלינים לבנוניים", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-wraps_1147-47.jpg?_wi=1", imageAlt: "שווארמה טבעונית"
name: "שווארמה טבעונית",
price: "₪28",
variant: "ירקות עם תבלינים לבנוניים",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-wraps_1147-47.jpg?_wi=2",
imageAlt: "שווארמה טבעונית",
}, },
{ {
id: "6", id: "6", name: "חמוצי הבית", price: "₪18", variant: "תערובת ירקות ותבלינים", imageSrc: "http://img.b2bpic.net/free-photo/jar-pickled-red-onions-white-background-concept-fermented-vegetarian-food_127032-3376.jpg?_wi=1", imageAlt: "חמוצי הבית"
name: "חמוצי הבית", },
price: "₪18", {
variant: "תערובת ירקות ותבלינים", id: "7", name: "דג סלמון מצוי", price: "₪68", variant: "דג אטלנטי טרי עם לימון", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fish-meal_23-2148254644.jpg?_wi=1", imageAlt: "דג סלמון מצוי"
imageSrc: "http://img.b2bpic.net/free-photo/jar-pickled-red-onions-white-background-concept-fermented-vegetarian-food_127032-3376.jpg?_wi=2", },
imageAlt: "חמוצי הבית", {
id: "8", name: "סלט קיץ", price: "₪32", variant: "ירקות טריים עם גבינת פטה", imageSrc: "http://img.b2bpic.net/free-photo/salad-plate-white-wooden-table_23-2148254646.jpg?_wi=1", imageAlt: "סלט קיץ"
},
{
id: "9", name: "פסטה קרבונרה", price: "₪48", variant: "פסטה איטלקית עם בקון וביצים", imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-carbonara-plate_23-2148254650.jpg?_wi=1", imageAlt: "פסטה קרבונרה"
},
{
id: "10", name: "שניצל חזיר", price: "₪55", variant: "שניצל עסיסי מבשר טרי", imageSrc: "http://img.b2bpic.net/free-photo/fried-schnitzel-plate_23-2148254652.jpg?_wi=1", imageAlt: "שניצל חזיר"
},
{
id: "11", name: "גבינה צלויה", price: "₪28", variant: "גבינה טרופה עם דבש וקרמלי בצל", imageSrc: "http://img.b2bpic.net/free-photo/fried-cheese-plate_23-2148254654.jpg?_wi=1", imageAlt: "גבינה צלויה"
},
{
id: "12", name: "דגנית טבעונית", price: "₪36", variant: "דגנית בהול עם ירקות", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-rice-bowl_23-2148254656.jpg?_wi=1", imageAlt: "דגנית טבעונית"
}, },
]} ]}
gridVariant="three-columns-all-equal-width" gridVariant="four-items-2x2-equal-grid"
animationType="slide-up" animationType="slide-up"
carouselMode="buttons" carouselMode="buttons"
/> />
@@ -103,63 +91,50 @@ export default function MenuPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterMedia <FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/exterior-modern-buildings_1127-3169.jpg?_wi=2" imageSrc="http://img.b2bpic.net/free-photo/exterior-modern-buildings_1127-3169.jpg?_wi=1"
imageAlt="חזית רינגלבלום 13" imageAlt="חזית רינגלבלום 13"
logoText="רינגלבלום 13" logoText="רינגלבלום 13"
copyrightText="© 2025 רינגלבלום 13 בר | כל הזכויות שמורות" copyrightText="© 2025 רינגלבלום 13 בר | כל הזכויות שמורות"
columns={[ columns={[
{ {
title: "קישורים", title: "קישורים", items: [
items: [
{ {
label: "בית", label: "בית", href: "/"
href: "/",
}, },
{ {
label: "תפריט", label: "תפריט", href: "/menu"
href: "/menu",
}, },
{ {
label: "על אודות", label: "על אודות", href: "/about"
href: "/",
}, },
{ {
label: "גלריה", label: "גלריה", href: "/gallery"
href: "/",
}, },
], ],
}, },
{ {
title: "יצירת קשר", title: "יצירת קשר", items: [
items: [
{ {
label: "רינגלבלום 13, באר שבע", label: "רינגלבלום 13, באר שבע", href: "https://maps.google.com/maps/place/Ringelblum+13,+Beersheba"
href: "https://maps.google.com/maps/place/Ringelblum+13,+Beersheba",
}, },
{ {
label: "052-279-6201", label: "052-279-6201", href: "tel:+972522796201"
href: "tel:+972522796201",
}, },
{ {
label: "שבת - ראשון 20:00-04:00", label: "שבת - ראשון 20:00-04:00", href: "#"
href: "#",
}, },
], ],
}, },
{ {
title: "עקבו אחרינו", title: "עקבו אחרינו", items: [
items: [
{ {
label: "אינסטגרם", label: "אינסטגרם", href: "https://instagram.com"
href: "https://instagram.com",
}, },
{ {
label: "פייסבוק", label: "פייסבוק", href: "https://facebook.com"
href: "https://facebook.com",
}, },
{ {
label: "טיקטוק", label: "טיקטוק", href: "https://tiktok.com"
href: "https://tiktok.com",
}, },
], ],
}, },

View File

@@ -35,7 +35,8 @@ export default function HomePage() {
{ name: "ביקורות", id: "/testimonials" }, { name: "ביקורות", id: "/testimonials" },
]} ]}
button={{ button={{
text: "הזמן עכשיו", href: "#contact"}} text: "הזמן עכשיו", href: "#contact"
}}
animateOnLoad={true} animateOnLoad={true}
/> />
</div> </div>
@@ -48,21 +49,27 @@ export default function HomePage() {
tagIcon={Star} tagIcon={Star}
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ background={{
variant: "glowing-orb"}} variant: "glowing-orb"
}}
kpis={[ kpis={[
{ {
value: "4.9", label: "דירוג מהלקוחות"}, value: "4.9", label: "דירוג מהלקוחות"
},
{ {
value: "624", label: "ביקורות חיוביות"}, value: "624", label: "ביקורות חיוביות"
},
{ {
value: "מ-₪50", label: "טווח מחירים"}, value: "מ-₪50", label: "טווח מחירים"
},
]} ]}
enableKpiAnimation={true} enableKpiAnimation={true}
buttons={[ buttons={[
{ {
text: "צפה בתפריט", href: "/menu"}, text: "צפה בתפריט", href: "/menu"
},
{ {
text: "הזמן אונליין", href: "#contact"}, text: "הזמן אונליין", href: "#contact"
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/nightlife-people-having-fun-bars-clubs_23-2149088580.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/nightlife-people-having-fun-bars-clubs_23-2149088580.jpg?_wi=1"
@@ -80,9 +87,11 @@ export default function HomePage() {
description="רינגלבלום 13 הוא בר ומסעדה בבאר שבע המציע אוכל רחוב איכותי, מנות טבעוניות, שירות מצוין, ומוזיקה עם אווירה צעירה ודינמית. המקום ידוע כאחד המקומות האהובים בעיר עם מאות ביקורות חיוביות ודירוג גבוה מאוד." description="רינגלבלום 13 הוא בר ומסעדה בבאר שבע המציע אוכל רחוב איכותי, מנות טבעוניות, שירות מצוין, ומוזיקה עם אווירה צעירה ודינמית. המקום ידוע כאחד המקומות האהובים בעיר עם מאות ביקורות חיוביות ודירוג גבוה מאוד."
metrics={[ metrics={[
{ {
value: "2020", title: "שנת הפתיחה"}, value: "2020", title: "שנת הפתיחה"
},
{ {
value: "24/7", title: "שירות מעולה"}, value: "24/7", title: "שירות מעולה"
},
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/row-decorative-light-bulbs-hanging-cafe_181624-58119.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/row-decorative-light-bulbs-hanging-cafe_181624-58119.jpg?_wi=1"
@@ -103,17 +112,23 @@ export default function HomePage() {
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
id: "1", name: "המבורגר עסיסי", price: "₪45", variant: "בחירת בשר אנגוס וטחינה", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-veggie-burger-with-black-buns-cutting-board_23-2148784540.jpg?_wi=1", imageAlt: "המבורגר עסיסי"}, id: "1", name: "המבורגר עסיסי", price: "₪45", variant: "בחירת בשר אנגוס וטחינה", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-veggie-burger-with-black-buns-cutting-board_23-2148784540.jpg?_wi=1", imageAlt: "המבורגר עסיסי"
},
{ {
id: "2", name: "עראיס מיוחל", price: "₪38", variant: "בשר טחון עם תבלינים מרוקאים", imageSrc: "http://img.b2bpic.net/free-photo/creative-composition-tasty-food_23-2148949081.jpg?_wi=1", imageAlt: "עראיס מיוחל"}, id: "2", name: "עראיס מיוחל", price: "₪38", variant: "בשר טחון עם תבלינים מרוקאים", imageSrc: "http://img.b2bpic.net/free-photo/creative-composition-tasty-food_23-2148949081.jpg?_wi=1", imageAlt: "עראיס מיוחל"
},
{ {
id: "3", name: "קרפצ'יו בשר", price: "₪52", variant: "בשר טרי עם שמן זית וביצים", imageSrc: "http://img.b2bpic.net/free-photo/red-cabbage-dish-wooden-plate_23-2148224118.jpg?_wi=1", imageAlt: "קרפצ'יו בשר"}, id: "3", name: "קרפצ'יו בשר", price: "₪52", variant: "בשר טרי עם שמן זית וביצים", imageSrc: "http://img.b2bpic.net/free-photo/red-cabbage-dish-wooden-plate_23-2148224118.jpg?_wi=1", imageAlt: "קרפצ'יו בשר"
},
{ {
id: "4", name: "עוף קריספי", price: "₪42", variant: "כנפיים ודדים מטוגנים בזהב", imageSrc: "http://img.b2bpic.net/free-photo/crispy-chicken-drumsticks-grilled-kfc-style-with-crackers_114579-765.jpg?_wi=1", imageAlt: "עוף קריספי"}, id: "4", name: "עוף קריספי", price: "₪42", variant: "כנפיים ודדים מטוגנים בזהב", imageSrc: "http://img.b2bpic.net/free-photo/crispy-chicken-drumsticks-grilled-kfc-style-with-crackers_114579-765.jpg?_wi=1", imageAlt: "עוף קריספי"
},
{ {
id: "5", name: "שווארמה טבעונית", price: "₪28", variant: "ירקות עם תבלינים לבנוניים", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-wraps_1147-47.jpg?_wi=1", imageAlt: "שווארמה טבעונית"}, id: "5", name: "שווארמה טבעונית", price: "₪28", variant: "ירקות עם תבלינים לבנוניים", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-wraps_1147-47.jpg?_wi=1", imageAlt: "שווארמה טבעונית"
},
{ {
id: "6", name: "חמוצי הבית", price: "₪18", variant: "תערובת ירקות ותבלינים", imageSrc: "http://img.b2bpic.net/free-photo/jar-pickled-red-onions-white-background-concept-fermented-vegetarian-food_127032-3376.jpg?_wi=1", imageAlt: "חמוצי הבית"}, id: "6", name: "חמוצי הבית", price: "₪18", variant: "תערובת ירקות ותבלינים", imageSrc: "http://img.b2bpic.net/free-photo/jar-pickled-red-onions-white-background-concept-fermented-vegetarian-food_127032-3376.jpg?_wi=1", imageAlt: "חמוצי הבית"
},
]} ]}
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
animationType="slide-up" animationType="slide-up"
@@ -125,17 +140,23 @@ export default function HomePage() {
<TestimonialCardTwelve <TestimonialCardTwelve
testimonials={[ testimonials={[
{ {
id: "1", name: "דור מוביל", imageSrc: "http://img.b2bpic.net/free-photo/people-spending-time-together-experiencing-time-expansion_23-2151338335.jpg?_wi=1", imageAlt: "דור מוביל"}, id: "1", name: "דור מוביל", imageSrc: "http://img.b2bpic.net/free-photo/people-spending-time-together-experiencing-time-expansion_23-2151338335.jpg?_wi=1", imageAlt: "דור מוביל"
},
{ {
id: "2", name: "תומר כהן", imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-boy-front-white-curtain_23-2148184877.jpg?_wi=1", imageAlt: "תומר כהן"}, id: "2", name: "תומר כהן", imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-boy-front-white-curtain_23-2148184877.jpg?_wi=1", imageAlt: "תומר כהן"
},
{ {
id: "3", name: "יעל לוי", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-slim-sensual-girl-gray-dress-leaning-ag_613910-8706.jpg?_wi=1", imageAlt: "יעל לוי"}, id: "3", name: "יעל לוי", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-slim-sensual-girl-gray-dress-leaning-ag_613910-8706.jpg?_wi=1", imageAlt: "יעל לוי"
},
{ {
id: "4", name: "אביב ישראלי", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-pack-expressive-businessman-character-with-blue-suit_23-2147610688.jpg?_wi=1", imageAlt: "אביב ישראלי"}, id: "4", name: "אביב ישראלי", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-pack-expressive-businessman-character-with-blue-suit_23-2147610688.jpg?_wi=1", imageAlt: "אביב ישראלי"
},
{ {
id: "5", name: "ניצה גבריאלי", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-holding-chocolate-heart_1163-89.jpg?_wi=1", imageAlt: "ניצה גבריאלי"}, id: "5", name: "ניצה גבריאלי", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-holding-chocolate-heart_1163-89.jpg?_wi=1", imageAlt: "ניצה גבריאלי"
},
{ {
id: "6", name: "רון טל", imageSrc: "http://img.b2bpic.net/free-photo/smiling-handsome-young-man-sitting-armchair-against-grey-wall_23-2148130370.jpg?_wi=1", imageAlt: "רון טל"}, id: "6", name: "רון טל", imageSrc: "http://img.b2bpic.net/free-photo/smiling-handsome-young-man-sitting-armchair-against-grey-wall_23-2148130370.jpg?_wi=1", imageAlt: "רון טל"
},
]} ]}
cardTitle="יותר מ-600 לקוחות מרוצים נותנים לנו 4.9 כוכבים" cardTitle="יותר מ-600 לקוחות מרוצים נותנים לנו 4.9 כוכבים"
cardTag="אתה בטוח אהבת את זה" cardTag="אתה בטוח אהבת את זה"
@@ -183,33 +204,43 @@ export default function HomePage() {
{ {
title: "קישורים", items: [ title: "קישורים", items: [
{ {
label: "בית", href: "/"}, label: "בית", href: "/"
},
{ {
label: "תפריט", href: "/menu"}, label: "תפריט", href: "/menu"
},
{ {
label: "על אודות", href: "/about"}, label: "על אודות", href: "/about"
},
{ {
label: "גלריה", href: "/gallery"}, label: "גלריה", href: "/gallery"
},
], ],
}, },
{ {
title: "יצירת קשר", items: [ title: "יצירת קשר", items: [
{ {
label: "רינגלבלום 13, באר שבע", href: "https://maps.google.com/maps/place/Ringelblum+13,+Beersheba"}, label: "רינגלבלום 13, באר שבע", href: "https://maps.google.com/maps/place/Ringelblum+13,+Beersheba"
},
{ {
label: "052-279-6201", href: "tel:+972522796201"}, label: "052-279-6201", href: "tel:+972522796201"
},
{ {
label: "שבת - ראשון 20:00-04:00", href: "#"}, label: "שבת - ראשון 20:00-04:00", href: "#"
},
], ],
}, },
{ {
title: "עקבו אחרינו", items: [ title: "עקבו אחרינו", items: [
{ {
label: "אינסטגרם", href: "https://instagram.com"}, label: "אינסטגרם", href: "https://instagram.com"
},
{ {
label: "פייסבוק", href: "https://facebook.com"}, label: "פייסבוק", href: "https://facebook.com"
},
{ {
label: "טיקטוק", href: "https://tiktok.com"}, label: "טיקטוק", href: "https://tiktok.com"
},
], ],
}, },
]} ]}