Update src/app/page.tsx
This commit is contained in:
341
src/app/page.tsx
341
src/app/page.tsx
@@ -30,132 +30,53 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Ana Sayfa",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Menü",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Yorumlar",
|
||||
id: "reviews",
|
||||
},
|
||||
{
|
||||
name: "İletişim",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Ana Sayfa", id: "hero" },
|
||||
{ name: "Menü", id: "menu" },
|
||||
{ name: "Yorumlar", id: "reviews" },
|
||||
{ name: "İletişim", id: "contact" },
|
||||
]}
|
||||
brandName="Çorbacı Azizusta"
|
||||
button={{ text: "Rezervasyon", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
title="Soma’nın 24 Saat Açık Meşhur Çorbacısı"
|
||||
description="Lezzetli paça, kelle paça ve geleneksel çorbalar ile günün her saati hizmetinizde."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-tomato-soup-with-finely-chopped-parmesan-slice-bread-blue-bowl_114579-1792.jpg?_wi=1",
|
||||
imageAlt: "warm traditional turkish soup bowl",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-potatoes-rice-inside-little-plate-dark-surface-dish-dinner-food-horizontal-meat-meal-cooking-table_140725-158691.jpg?_wi=1",
|
||||
imageAlt: "kelle paca soup close up",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-squeezes-lemon-into-soup_176474-2672.jpg?_wi=1",
|
||||
imageAlt: "turkish food appetizing garnish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pumpkin-soup-bowl_140725-84885.jpg?_wi=1",
|
||||
imageAlt: "turkish food healthy ingredient",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-hotel-reception-lobby_482257-76206.jpg",
|
||||
imageAlt: "modern cafe interior warm light",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-tomato-soup-with-finely-chopped-parmesan-slice-bread-blue-bowl_114579-1792.jpg", imageAlt: "warm traditional turkish soup bowl" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-potatoes-rice-inside-little-plate-dark-surface-dish-dinner-food-horizontal-meat-meal-cooking-table_140725-158691.jpg", imageAlt: "kelle paca soup close up" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-squeezes-lemon-into-soup_176474-2672.jpg", imageAlt: "turkish food appetizing garnish" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pumpkin-soup-bowl_140725-84885.jpg", imageAlt: "turkish food healthy ingredient" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/elegant-hotel-reception-lobby_482257-76206.jpg", imageAlt: "modern cafe interior warm light" }
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-apron-preparing-food-takeaway_23-2149025781.jpg",
|
||||
imageAlt: "clean kitchen food preparation",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-table-arrangement-by-wedding-planner_23-2150167204.jpg",
|
||||
imageAlt: "restaurant interior rustic decor",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552643.jpg",
|
||||
imageAlt: "turkish food appetizing garnish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hot-chicken-soup-with-herbs-red-wine_140725-2917.jpg",
|
||||
imageAlt: "kelle paca soup close up",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pumpkin-soup-white-pan_114579-2081.jpg",
|
||||
imageAlt: "warm traditional turkish soup bowl",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-with-apron-preparing-food-takeaway_23-2149025781.jpg", imageAlt: "clean kitchen food preparation" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/view-table-arrangement-by-wedding-planner_23-2150167204.jpg", imageAlt: "restaurant interior rustic decor" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552643.jpg", imageAlt: "turkish food appetizing garnish" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/hot-chicken-soup-with-herbs-red-wine_140725-2917.jpg", imageAlt: "kelle paca soup close up" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/pumpkin-soup-white-pan_114579-2081.jpg", imageAlt: "warm traditional turkish soup bowl" }
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Hemen Ara",
|
||||
href: "tel:+905550000000",
|
||||
},
|
||||
{
|
||||
text: "Yol Tarifi Al",
|
||||
href: "https://maps.google.com",
|
||||
},
|
||||
{ text: "Hemen Ara", href: "tel:+905550000000" },
|
||||
{ text: "Yol Tarifi Al", href: "https://maps.google.com" }
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg",
|
||||
alt: "Friends eating",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/man-woman-posing-together-retro-style-with-beverage_23-2149525831.jpg",
|
||||
alt: "Man and woman",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/group-happy-friends-having-fun-while-eating-cake-cafe_637285-7896.jpg",
|
||||
alt: "Group of friends",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friends-eating-pizza-medium-shot_23-2149872407.jpg",
|
||||
alt: "Friends eating pizza",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/family-having-nice-thanksgiving-dinner-together_23-2149082320.jpg",
|
||||
alt: "Family dinner",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg", alt: "Friends eating" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/man-woman-posing-together-retro-style-with-beverage_23-2149525831.jpg", alt: "Man and woman" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/group-happy-friends-having-fun-while-eating-cake-cafe_637285-7896.jpg", alt: "Group of friends" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/friends-eating-pizza-medium-shot_23-2149872407.jpg", alt: "Friends eating pizza" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/family-having-nice-thanksgiving-dinner-together_23-2149082320.jpg", alt: "Family dinner" }
|
||||
]}
|
||||
avatarText="Binlerce mutlu müşterimizden sadece birkaçı"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "24/7 AÇIK",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "TAZE LEZZET",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "GELENEKSEL",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "HİJYENİK",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "SOMA'NIN GURURU",
|
||||
},
|
||||
{ type: "text", text: "24/7 AÇIK" },
|
||||
{ type: "text", text: "TAZE LEZZET" },
|
||||
{ type: "text", text: "GELENEKSEL" },
|
||||
{ type: "text", text: "HİJYENİK" },
|
||||
{ type: "text", text: "SOMA'NIN GURURU" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -166,20 +87,11 @@ export default function LandingPage() {
|
||||
title="Aziz Baba Markadır"
|
||||
description="Yıllardır Soma'da değişmeyen lezzetimiz ve temizliğimizle hizmetinizdeyiz. 24 saat boyunca sıcak çorbalarımızla sizi bekliyoruz."
|
||||
metrics={[
|
||||
{
|
||||
value: "300+",
|
||||
title: "Google Yorumu",
|
||||
},
|
||||
{
|
||||
value: "4.2",
|
||||
title: "Google Puanı",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
title: "Açık Saatler",
|
||||
},
|
||||
{ value: "300+", title: "Google Yorumu" },
|
||||
{ value: "4.2", title: "Google Puanı" },
|
||||
{ value: "24/7", title: "Açık Saatler" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/low-angle-chef-seasoning-salad_23-2148471931.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/low-angle-chef-seasoning-salad_23-2148471931.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -192,48 +104,12 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Kelle Paça",
|
||||
price: "₺150",
|
||||
variant: "Sıcak",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-spanish-gazpacho-soup-bowl-wooden-table_123827-35977.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Paça Çorbası",
|
||||
price: "₺140",
|
||||
variant: "Sıcak",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-delicious-gulas-dish-arrangement_23-2149072567.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "İşkembe",
|
||||
price: "₺130",
|
||||
variant: "Sıcak",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pumpking-soup_23-2148115045.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Mercimek",
|
||||
price: "₺90",
|
||||
variant: "Sıcak",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chinese-noodle-soup-tomato-sauce-with-beans_114579-4559.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Ezogelin",
|
||||
price: "₺90",
|
||||
variant: "Sıcak",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-squeezing-lemon-juice-into-lentil-soup-restaurant_140725-1698.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Tavuk Suyu",
|
||||
price: "₺100",
|
||||
variant: "Sıcak",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-mayyonaise-salad-with-seasonings-vegetables-dark-space_140725-76327.jpg",
|
||||
},
|
||||
{ id: "1", name: "Kelle Paça", price: "₺150", variant: "Sıcak", imageSrc: "http://img.b2bpic.net/free-photo/traditional-spanish-gazpacho-soup-bowl-wooden-table_123827-35977.jpg" },
|
||||
{ id: "2", name: "Paça Çorbası", price: "₺140", variant: "Sıcak", imageSrc: "http://img.b2bpic.net/free-photo/traditional-delicious-gulas-dish-arrangement_23-2149072567.jpg" },
|
||||
{ id: "3", name: "İşkembe", price: "₺130", variant: "Sıcak", imageSrc: "http://img.b2bpic.net/free-photo/pumpking-soup_23-2148115045.jpg" },
|
||||
{ id: "4", name: "Mercimek", price: "₺90", variant: "Sıcak", imageSrc: "http://img.b2bpic.net/free-photo/chinese-noodle-soup-tomato-sauce-with-beans_114579-4559.jpg" },
|
||||
{ id: "5", name: "Ezogelin", price: "₺90", variant: "Sıcak", imageSrc: "http://img.b2bpic.net/free-photo/woman-squeezing-lemon-juice-into-lentil-soup-restaurant_140725-1698.jpg" },
|
||||
{ id: "6", name: "Tavuk Suyu", price: "₺100", variant: "Sıcak", imageSrc: "http://img.b2bpic.net/free-photo/top-view-mayyonaise-salad-with-seasonings-vegetables-dark-space_140725-76327.jpg" }
|
||||
]}
|
||||
title="Menümüz"
|
||||
description="Geleneksel yöntemlerle hazırlanan taze ve lezzetli çorbalarımız."
|
||||
@@ -245,20 +121,8 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Hızlı servis beklemeyin",
|
||||
"Her zaman taze lezzet",
|
||||
"Uygun fiyat garantisi",
|
||||
],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"24 saat açık hizmet",
|
||||
"Hijyenik ve temiz mutfak",
|
||||
"Güvenilir yerel işletme",
|
||||
],
|
||||
}}
|
||||
negativeCard={{ items: ["Hızlı servis beklemeyin", "Her zaman taze lezzet", "Uygun fiyat garantisi"] }}
|
||||
positiveCard={{ items: ["24 saat açık hizmet", "Hijyenik ve temiz mutfak", "Güvenilir yerel işletme"] }}
|
||||
title="Neden Çorbacı Azizusta?"
|
||||
description="Bizi tercih etmeniz için birçok sebebiniz var."
|
||||
/>
|
||||
@@ -271,6 +135,7 @@ export default function LandingPage() {
|
||||
description="Sıcak bir atmosferde, taze malzemelerle hazırlanan lezzetlerimize göz atın."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/event-hall-wooden-table-with-rustic-chairs_114579-2233.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
metrics={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -279,61 +144,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Ahmet Yılmaz",
|
||||
date: "1 ay önce",
|
||||
title: "Harika",
|
||||
quote: "Temiz ve leziz, paça çorbası enfes.",
|
||||
tag: "Google",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/side-view-happy-people-with-tasty-food_23-2149525568.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-tomato-soup-with-finely-chopped-parmesan-slice-bread-blue-bowl_114579-1792.jpg?_wi=2",
|
||||
imageAlt: "smiling customer portrait",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Ayşe Demir",
|
||||
date: "2 ay önce",
|
||||
title: "Mükemmel",
|
||||
quote: "Aziz Baba markadır, her zaman aynı kalite.",
|
||||
tag: "Google",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-family-smiling-happy-confident-showing-roasted-turkey-applauding-celebrating-thanksgiving-day-home_839833-12166.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-chef-seasoning-salad_23-2148471931.jpg?_wi=2",
|
||||
imageAlt: "smiling customer portrait",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Mehmet Can",
|
||||
date: "3 ay önce",
|
||||
title: "Tavsiye",
|
||||
quote: "Soma'da bu saatte tek seçenek.",
|
||||
tag: "Google",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/lovely-couple-posing-with-baby_1153-2630.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-potatoes-rice-inside-little-plate-dark-surface-dish-dinner-food-horizontal-meat-meal-cooking-table_140725-158691.jpg?_wi=2",
|
||||
imageAlt: "smiling customer portrait",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Canan Kaya",
|
||||
date: "1 hafta önce",
|
||||
title: "Güvenilir",
|
||||
quote: "İşkembe çorbası çok başarılı.",
|
||||
tag: "Google",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/man-cooking-with-dairy-products_23-2148550736.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-squeezes-lemon-into-soup_176474-2672.jpg?_wi=2",
|
||||
imageAlt: "smiling customer portrait",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Emre Polat",
|
||||
date: "2 hafta önce",
|
||||
title: "Harika",
|
||||
quote: "Hizmet çok hızlı ve çalışanlar ilgili.",
|
||||
tag: "Google",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pumpkin-soup-bowl_140725-84885.jpg?_wi=2",
|
||||
imageAlt: "smiling customer portrait",
|
||||
},
|
||||
{ id: "1", name: "Ahmet Yılmaz", date: "1 ay önce", title: "Harika", quote: "Temiz ve leziz, paça çorbası enfes.", tag: "Google", avatarSrc: "http://img.b2bpic.net/free-photo/side-view-happy-people-with-tasty-food_23-2149525568.jpg", imageSrc: "http://img.b2bpic.net/free-photo/fresh-tomato-soup-with-finely-chopped-parmesan-slice-bread-blue-bowl_114579-1792.jpg", imageAlt: "smiling customer portrait" },
|
||||
{ id: "2", name: "Ayşe Demir", date: "2 ay önce", title: "Mükemmel", quote: "Aziz Baba markadır, her zaman aynı kalite.", tag: "Google", avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-family-smiling-happy-confident-showing-roasted-turkey-applauding-celebrating-thanksgiving-day-home_839833-12166.jpg", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-chef-seasoning-salad_23-2148471931.jpg", imageAlt: "smiling customer portrait" },
|
||||
{ id: "3", name: "Mehmet Can", date: "3 ay önce", title: "Tavsiye", quote: "Soma'da bu saatte tek seçenek.", tag: "Google", avatarSrc: "http://img.b2bpic.net/free-photo/lovely-couple-posing-with-baby_1153-2630.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-potatoes-rice-inside-little-plate-dark-surface-dish-dinner-food-horizontal-meat-meal-cooking-table_140725-158691.jpg", imageAlt: "smiling customer portrait" },
|
||||
{ id: "4", name: "Canan Kaya", date: "1 hafta önce", title: "Güvenilir", quote: "İşkembe çorbası çok başarılı.", tag: "Google", avatarSrc: "http://img.b2bpic.net/free-photo/man-cooking-with-dairy-products_23-2148550736.jpg", imageSrc: "http://img.b2bpic.net/free-photo/man-squeezes-lemon-into-soup_176474-2672.jpg", imageAlt: "smiling customer portrait" },
|
||||
{ id: "5", name: "Emre Polat", date: "2 hafta önce", title: "Harika", quote: "Hizmet çok hızlı ve çalışanlar ilgili.", tag: "Google", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pumpkin-soup-bowl_140725-84885.jpg", imageAlt: "smiling customer portrait" }
|
||||
]}
|
||||
title="Müşterilerimiz Ne Diyor?"
|
||||
description="Sizlerden gelen değerli geri bildirimler bizi mutlu ediyor."
|
||||
@@ -347,21 +162,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "Melis Sk. No:2",
|
||||
description: "Namazgah, Soma/Manisa",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "24/7",
|
||||
description: "Her zaman açığız",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "WhatsApp",
|
||||
description: "Sipariş Hattı",
|
||||
},
|
||||
{ id: "1", value: "Melis Sk. No:2", description: "Namazgah, Soma/Manisa" },
|
||||
{ id: "2", value: "24/7", description: "Her zaman açığız" },
|
||||
{ id: "3", value: "WhatsApp", description: "Sipariş Hattı" }
|
||||
]}
|
||||
title="Konum ve İletişim"
|
||||
description="Soma merkezinde, ulaşımı çok kolay."
|
||||
@@ -371,9 +174,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="İletişim"
|
||||
title="Bize Hemen Ulaşın"
|
||||
description="Sorularınız veya siparişleriniz için bizi arayabilir veya mesaj gönderebilirsiniz."
|
||||
@@ -386,39 +187,19 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Hızlı Erişim",
|
||||
items: [
|
||||
{
|
||||
label: "Ana Sayfa",
|
||||
href: "#hero",
|
||||
},
|
||||
{
|
||||
label: "Menü",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "Yorumlar",
|
||||
href: "#reviews",
|
||||
},
|
||||
],
|
||||
title: "Hızlı Erişim", items: [
|
||||
{ label: "Ana Sayfa", href: "#hero" },
|
||||
{ label: "Menü", href: "#menu" },
|
||||
{ label: "Yorumlar", href: "#reviews" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "İletişim",
|
||||
items: [
|
||||
{
|
||||
label: "Yol Tarifi",
|
||||
href: "#location",
|
||||
},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/905550000000",
|
||||
},
|
||||
{
|
||||
label: "Bizi Arayın",
|
||||
href: "tel:+905550000000",
|
||||
},
|
||||
],
|
||||
},
|
||||
title: "İletişim", items: [
|
||||
{ label: "Yol Tarifi", href: "#location" },
|
||||
{ label: "WhatsApp", href: "https://wa.me/905550000000" },
|
||||
{ label: "Bizi Arayın", href: "tel:+905550000000" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Çorbacı Azizusta"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user