Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a50227bb5a |
196
src/app/page.tsx
196
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "בית",
|
name: "בית", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "תפריט",
|
name: "תפריט", id: "menu"},
|
||||||
id: "menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "ביקורות",
|
name: "ביקורות", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "סיפורנו",
|
name: "סיפורנו", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="בית הפיצה"
|
brandName="בית הפיצה"
|
||||||
/>
|
/>
|
||||||
@@ -54,51 +46,28 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardRotatedCarousel
|
<HeroBillboardRotatedCarousel
|
||||||
background={{
|
background={{
|
||||||
variant: "rotated-rays-animated",
|
variant: "rotated-rays-animated"}}
|
||||||
}}
|
|
||||||
title="הפיצה הכי חמה בעיר. טרייה. עשויה בעבודת יד. מלאה בטעם."
|
title="הפיצה הכי חמה בעיר. טרייה. עשויה בעבודת יד. מלאה בטעם."
|
||||||
description="אצלנו לא חוסכים – כל פיצה יוצאת עשירה, טרייה, ומוכנה בדיוק בשבילך."
|
description="אצלנו לא חוסכים – כל פיצה יוצאת עשירה, טרייה, ומוכנה בדיוק בשבילך."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "הזמן משלוח",
|
text: "הזמן משלוח", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "לתפריט",
|
text: "לתפריט", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134261.jpg", imageAlt: "Fresh pizza"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134261.jpg",
|
|
||||||
imageAlt: "Fresh pizza",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/slice-pizza-hand-closeup-selective-focus-lunch-time-tratoria-delicious-pizza-with-sundried-tomatoes-with-mozzarella-cheese-cut-into-slices-lunch-pizzeria_166373-3656.jpg", imageAlt: "Stretching cheese"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-pizza-hand-closeup-selective-focus-lunch-time-tratoria-delicious-pizza-with-sundried-tomatoes-with-mozzarella-cheese-cut-into-slices-lunch-pizzeria_166373-3656.jpg",
|
|
||||||
imageAlt: "Stretching cheese",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134248.jpg", imageAlt: "Pizza oven"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134248.jpg",
|
|
||||||
imageAlt: "Pizza oven",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-epiphany-day-dessert-with-candy_23-2148740545.jpg", imageAlt: "Dough preparation"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-epiphany-day-dessert-with-candy_23-2148740545.jpg",
|
|
||||||
imageAlt: "Dough preparation",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-with-vegetables_23-2148601650.jpg", imageAlt: "Gourmet ingredients"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-with-vegetables_23-2148601650.jpg",
|
|
||||||
imageAlt: "Gourmet ingredients",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-cooked-pizza-hands_23-2148040989.jpg", imageAlt: "Serving pizza"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-cooked-pizza-hands_23-2148040989.jpg",
|
|
||||||
imageAlt: "Serving pizza",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -110,63 +79,18 @@ export default function LandingPage() {
|
|||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{ id: "b1", brand: "מאפים", name: "פוקאצ'ה שום", price: "₪25", rating: 5, reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/focaccia-with-rosemary-sea-salt_23-2148906950.jpg" },
|
||||||
id: "1",
|
{ id: "s1", brand: "סלטים", name: "סלט יווני", price: "₪45", rating: 4, reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/greek-salad-with-feta_23-2151961969.jpg" },
|
||||||
brand: "פיצה",
|
{ id: "p1", brand: "פסטות", name: "פסטה פומודורו", price: "₪55", rating: 5, reviewCount: "50", imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-tomatoes-basil_23-2148227653.jpg" },
|
||||||
name: "מרגריטה קלאסית",
|
{ id: "y1", brand: "תימני", name: "מלאווח משפחתי", price: "₪35", rating: 5, reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/golden-bells-thai-temple_23-2152002057.jpg" },
|
||||||
price: "₪59",
|
{ id: "sp1", brand: "מיוחדים", name: "זיווה גבינה", price: "₪40", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/bakery-fresh-food_23-2148601650.jpg" },
|
||||||
rating: 5,
|
{ id: "pi1", brand: "פיצה", name: "מרגריטה קלאסית", price: "₪59", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-mushroom-pizza-with-cheese-olives-tomatoes-dark-surface-pizza-italy-meal-dough-food_140725-101777.jpg" },
|
||||||
reviewCount: "120",
|
{ id: "v1", brand: "טבעוני", name: "פיצה טבעונית ירקות", price: "₪72", rating: 5, reviewCount: "55", imageSrc: "http://img.b2bpic.net/free-photo/view-vegan-pizza-done-with-vegetables-by-bakery_23-2150195157.jpg" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-mushroom-pizza-with-cheese-olives-tomatoes-dark-surface-pizza-italy-meal-dough-food_140725-101777.jpg",
|
{ id: "d1", brand: "שתייה", name: "לימונדה ביתית", price: "₪15", rating: 4, reviewCount: "20", imageSrc: "http://img.b2bpic.net/free-photo/glass-lemonade-with-mint-leaves_23-2148530374.jpg" },
|
||||||
},
|
{ id: "de1", brand: "קינוחים", name: "מלבי קלאסי", price: "₪20", rating: 5, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/delicious-panna-cotta_23-2148530374.jpg" }
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
brand: "פיצה",
|
|
||||||
name: "פיצה פפרוני",
|
|
||||||
price: "₪69",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "85",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-neapolitan-pizza-board_78826-3284.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
brand: "פסטה",
|
|
||||||
name: "פסטה קרבונרה",
|
|
||||||
price: "₪65",
|
|
||||||
rating: 4,
|
|
||||||
reviewCount: "92",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fettucine-white-cream-sauce-with-shrimp-mushroom_74190-5969.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
brand: "סלט",
|
|
||||||
name: "סלט איטלקי",
|
|
||||||
price: "₪45",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "45",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/greek-salad-with-feta_23-2151961969.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
brand: "נשנושים",
|
|
||||||
name: "מלאווח משפחתי",
|
|
||||||
price: "₪35",
|
|
||||||
rating: 4,
|
|
||||||
reviewCount: "67",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/golden-bells-thai-temple_23-2152002057.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6",
|
|
||||||
brand: "פיצה",
|
|
||||||
name: "פיצה טבעונית",
|
|
||||||
price: "₪72",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "55",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/view-vegan-pizza-done-with-vegetables-by-bakery_23-2150195157.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="התפריט שלנו"
|
title="התפריט שלנו"
|
||||||
description="לא חוסכים עליך. כל מנה מלאה, עשירה ומדויקת."
|
description="מבחר עשיר של פיצות, מאפים, מנות תימניות, קינוחים ושתייה – הכל מחומרי גלם טריים."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -175,30 +99,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "אבי כהן", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-handsome-man-with-blond-hair-wearing-burgunde-casual-t-shirt-standing_176532-9610.jpg"},
|
||||||
name: "אבי כהן",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-handsome-man-with-blond-hair-wearing-burgunde-casual-t-shirt-standing_176532-9610.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "מיכל לוי", imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-smiling-restaurant_23-2149316809.jpg"},
|
||||||
name: "מיכל לוי",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-smiling-restaurant_23-2149316809.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "יוסי מזרחי", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-carrying-shopping-bags_23-2148660764.jpg"},
|
||||||
name: "יוסי מזרחי",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-carrying-shopping-bags_23-2148660764.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "דנה אשכנזי", imageSrc: "http://img.b2bpic.net/free-photo/laughing-woman-speaking-phone_23-2147779739.jpg"},
|
||||||
name: "דנה אשכנזי",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/laughing-woman-speaking-phone_23-2147779739.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "רונן חדד", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-shopping-clothes_23-2149187303.jpg"},
|
||||||
name: "רונן חדד",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-shopping-clothes_23-2149187303.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
cardTitle="מי שטעם – כבר לא חוזר אחורה"
|
cardTitle="מי שטעם – כבר לא חוזר אחורה"
|
||||||
cardAnimation="blur-reveal"
|
cardAnimation="blur-reveal"
|
||||||
@@ -213,20 +122,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "משלוח מהיר",
|
title: "משלוח מהיר", description: "הפיצה יוצאת מהתנור ומגיעה אליך חמה תוך דקות.", imageSrc: "http://img.b2bpic.net/free-photo/surprised-deliveryman-driving-yellow-scooter-while-holding-pizza-box_273609-31412.jpg"},
|
||||||
description: "הפיצה יוצאת מהתנור ומגיעה אליך חמה תוך דקות.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/surprised-deliveryman-driving-yellow-scooter-while-holding-pizza-box_273609-31412.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "אריזה מבודדת",
|
title: "אריזה מבודדת", description: "טכנולוגיית אריזה ששומרת על החום והפריכות.", imageSrc: "http://img.b2bpic.net/free-photo/young-delivery-man-red-uniform-cap-holding-box-package-pizza-boxes-pointing-his-temple-looking-confident-focused-task-standing-white-wall_141793-26477.jpg"},
|
||||||
description: "טכנולוגיית אריזה ששומרת על החום והפריכות.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-delivery-man-red-uniform-cap-holding-box-package-pizza-boxes-pointing-his-temple-looking-confident-focused-task-standing-white-wall_141793-26477.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "אחריות טעם",
|
title: "אחריות טעם", description: "אם זה לא מושלם, אנחנו מחליפים.", imageSrc: "http://img.b2bpic.net/free-photo/roommates-sharing-meal-together_23-2149112176.jpg"},
|
||||||
description: "אם זה לא מושלם, אנחנו מחליפים.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/roommates-sharing-meal-together_23-2149112176.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="חם מהתנור – עד אליך"
|
title="חם מהתנור – עד אליך"
|
||||||
description="בלי פשרות על איכות, בלי הפתעות. אנחנו מתחייבים: פיצה שיוצאת מהתנור – מגיעה אליך מושלמת."
|
description="בלי פשרות על איכות, בלי הפתעות. אנחנו מתחייבים: פיצה שיוצאת מהתנור – מגיעה אליך מושלמת."
|
||||||
@@ -240,19 +140,13 @@ export default function LandingPage() {
|
|||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
icon: Heart,
|
icon: Heart,
|
||||||
label: "שנות ניסיון",
|
label: "שנות ניסיון", value: "15+"},
|
||||||
value: "15+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Flame,
|
icon: Flame,
|
||||||
label: "פיצות ביום",
|
label: "פיצות ביום", value: "500+"},
|
||||||
value: "500+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Utensils,
|
icon: Utensils,
|
||||||
label: "לקוחות מרוצים",
|
label: "לקוחות מרוצים", value: "10K+"},
|
||||||
value: "10K+",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -265,22 +159,14 @@ export default function LandingPage() {
|
|||||||
description="הזמן עכשיו ותבין למה כולם מדברים עלינו."
|
description="הזמן עכשיו ותבין למה כולם מדברים עלינו."
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{
|
||||||
name: "name",
|
name: "name", type: "text", placeholder: "שם מלא", required: true,
|
||||||
type: "text",
|
|
||||||
placeholder: "שם מלא",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "phone",
|
name: "phone", type: "tel", placeholder: "טלפון", required: true,
|
||||||
type: "tel",
|
|
||||||
placeholder: "טלפון",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "order",
|
name: "order", placeholder: "מה תרצה להזמין?", rows: 4,
|
||||||
placeholder: "מה תרצה להזמין?",
|
|
||||||
rows: 4,
|
|
||||||
required: true,
|
required: true,
|
||||||
}}
|
}}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-view-delicious-thanksgiving-meal_23-2148629558.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/close-up-view-delicious-thanksgiving-meal_23-2148629558.jpg"
|
||||||
@@ -292,13 +178,9 @@ export default function LandingPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="בית הפיצה"
|
logoText="בית הפיצה"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "אינסטגרם",
|
text: "אינסטגרם", href: "https://instagram.com"}}
|
||||||
href: "https://instagram.com",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "צור קשר",
|
text: "צור קשר", href: "tel:0501234567"}}
|
||||||
href: "tel:0501234567",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user