Update src/app/page.tsx
This commit is contained in:
375
src/app/page.tsx
375
src/app/page.tsx
@@ -26,256 +26,143 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Anasayfa",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Hizmetlerimiz",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Hakkımızda",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "İletişim",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Çağdaş Yemek"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Anasayfa", id: "hero" },
|
||||
{ name: "Hizmetlerimiz", id: "features" },
|
||||
{ name: "Hakkımızda", id: "about" },
|
||||
{ name: "İletişim", id: "contact" },
|
||||
]}
|
||||
brandName="Çağdaş Yemek"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Çatalca'nın Lezzetli ve Güvenilir Yemek Hizmeti"
|
||||
description="Tabldot yemekten düğün ve özel davetlere kadar, yılların tecrübesiyle hijyenik ve kaliteli catering hizmeti sunuyoruz."
|
||||
buttons={[
|
||||
{
|
||||
text: "Hemen Ara",
|
||||
href: "tel:+902127893010",
|
||||
},
|
||||
{
|
||||
text: "Teklif Al",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-nutrition-food-meal-planning_23-2149074212.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-pretty-woman-drinking-tasty-sweet-cocktail-city-terrace-casual-trendy-outfit-weekend-travel-mood_291049-1724.jpg",
|
||||
alt: "Müşteri",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
alt: "Müşteri",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/family-enjoying-thanksgiving-day-dinner_23-2149129521.jpg",
|
||||
alt: "Müşteri",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg",
|
||||
alt: "Müşteri",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg",
|
||||
alt: "Müşteri",
|
||||
},
|
||||
]}
|
||||
avatarText="500+ Mutlu Müşteri"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Taze Malzemeler",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Hızlı Teslimat",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Hijyen Garantili",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Profesyonel Şefler",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Uygun Fiyatlar",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Çatalca'nın Lezzetli ve Güvenilir Yemek Hizmeti"
|
||||
description="Tabldot yemekten düğün ve özel davetlere kadar, yılların tecrübesiyle hijyenik ve kaliteli catering hizmeti sunuyoruz."
|
||||
buttons={[
|
||||
{ text: "Hemen Ara", href: "tel:+902127893010" },
|
||||
{ text: "Teklif Al", href: "#contact" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-nutrition-food-meal-planning_23-2149074212.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-pretty-woman-drinking-tasty-sweet-cocktail-city-terrace-casual-trendy-outfit-weekend-travel-mood_291049-1724.jpg", alt: "Müşteri" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg", alt: "Müşteri" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/family-enjoying-thanksgiving-day-dinner_23-2149129521.jpg", alt: "Müşteri" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg", alt: "Müşteri" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg", alt: "Müşteri" },
|
||||
]}
|
||||
avatarText="500+ Mutlu Müşteri"
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Taze Malzemeler" },
|
||||
{ type: "text", text: "Hızlı Teslimat" },
|
||||
{ type: "text", text: "Hijyen Garantili" },
|
||||
{ type: "text", text: "Profesyonel Şefler" },
|
||||
{ type: "text", text: "Uygun Fiyatlar" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyFive
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Tabldot Yemek",
|
||||
description: "İş yerleri ve günlük ihtiyaçlarınız için taze, sağlıklı tabldot yemek servisi.",
|
||||
icon: Utensils,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-flat-lay_23-2149182197.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-flat-lay_23-2149182197.jpg?_wi=2",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-nutrition-food-meal-planning_23-2149074212.jpg?_wi=2",
|
||||
imageAlt: "catering service professional kitchen food",
|
||||
},
|
||||
{
|
||||
title: "Düğün & Organizasyon",
|
||||
description: "En mutlu gününüzü, profesyonel dokunuşlarla unutulmaz bir ziyafete dönüştürüyoruz.",
|
||||
icon: Award,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-catering-table-event_8353-9847.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-catering-table-event_8353-9847.jpg?_wi=2",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-with-tablet_23-2148145644.jpg?_wi=1",
|
||||
imageAlt: "hygienic professional kitchen interior",
|
||||
},
|
||||
{
|
||||
title: "Özel Lezzetler",
|
||||
description: "Geleneksel helvamız ve özel reçeteli tatlılarımızla fark yaratıyoruz.",
|
||||
icon: Sparkles,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sweet-turkish-delight-blue-table_23-2148080001.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sweet-turkish-delight-blue-table_23-2148080001.jpg?_wi=2",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-flat-lay_23-2149182197.jpg?_wi=3",
|
||||
imageAlt: "tabldot meal service plate",
|
||||
},
|
||||
]}
|
||||
title="Hizmetlerimiz"
|
||||
description="İhtiyacınıza uygun, yüksek kaliteli ve hijyenik yemek çözümleri."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyFive
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Hizmetlerimiz"
|
||||
description="İhtiyacınıza uygun, yüksek kaliteli ve hijyenik yemek çözümleri."
|
||||
features={[
|
||||
{
|
||||
title: "Tabldot Yemek", description: "İş yerleri ve günlük ihtiyaçlarınız için taze, sağlıklı tabldot yemek servisi.", icon: Utensils,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-flat-lay_23-2149182197.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-flat-lay_23-2149182197.jpg" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Düğün & Organizasyon", description: "En mutlu gününüzü, profesyonel dokunuşlarla unutulmaz bir ziyafete dönüştürüyoruz.", icon: Award,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/meat-catering-table-event_8353-9847.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/meat-catering-table-event_8353-9847.jpg" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Özel Lezzetler", description: "Geleneksel helvamız ve özel reçeteli tatlılarımızla fark yaratıyoruz.", icon: Sparkles,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/sweet-turkish-delight-blue-table_23-2148080001.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/sweet-turkish-delight-blue-table_23-2148080001.jpg" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="Hakkımızda"
|
||||
title="Çağdaş Yemek: Çatalca'nın Güvenilir Catering Markası"
|
||||
description="Çatalca'da yıllardır süregelen tecrübemizle, hijyen standartlarından ödün vermeden ev yemeği lezzetini profesyonel catering hizmetiyle buluşturuyoruz."
|
||||
subdescription="Her tabakta müşteri memnuniyetini ve gıda güvenliğini önceliğimiz tutuyoruz."
|
||||
icon={ShieldCheck}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-with-tablet_23-2148145644.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="Hakkımızda"
|
||||
title="Çağdaş Yemek: Çatalca'nın Güvenilir Catering Markası"
|
||||
description="Çatalca'da yıllardır süregelen tecrübemizle, hijyen standartlarından ödün vermeden ev yemeği lezzetini profesyonel catering hizmetiyle buluşturuyoruz."
|
||||
subdescription="Her tabakta müşteri memnuniyetini ve gıda güvenliğini önceliğimiz tutuyoruz."
|
||||
icon={ShieldCheck}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-with-tablet_23-2148145644.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Ahmet Y.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-woman-drinking-tasty-sweet-cocktail-city-terrace-casual-trendy-outfit-weekend-travel-mood_291049-1724.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Ayşe K.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Mehmet S.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-enjoying-thanksgiving-day-dinner_23-2149129521.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Zeynep B.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Can D.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg",
|
||||
},
|
||||
]}
|
||||
cardTitle="Müşterilerimiz Ne Diyor?"
|
||||
cardTag="Yorumlar"
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Ahmet Y.", imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-woman-drinking-tasty-sweet-cocktail-city-terrace-casual-trendy-outfit-weekend-travel-mood_291049-1724.jpg" },
|
||||
{ id: "2", name: "Ayşe K.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg" },
|
||||
{ id: "3", name: "Mehmet S.", imageSrc: "http://img.b2bpic.net/free-photo/family-enjoying-thanksgiving-day-dinner_23-2149129521.jpg" },
|
||||
{ id: "4", name: "Zeynep B.", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg" },
|
||||
{ id: "5", name: "Can D.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg" },
|
||||
]}
|
||||
cardTitle="Müşterilerimiz Ne Diyor?"
|
||||
cardTag="Yorumlar"
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="Hemen Teklif Alın"
|
||||
description="Catering ihtiyaçlarınız için bize ulaşın, profesyonel çözümlerimizi planlayalım."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/coffee-pins-map_23-2147635444.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
tag="İletişim"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
title="Hemen Teklif Alın"
|
||||
description="Catering ihtiyaçlarınız için bize ulaşın, profesyonel çözümlerimizi planlayalım."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/coffee-pins-map_23-2147635444.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
tag="İletişim"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Çağdaş Yemek"
|
||||
columns={[
|
||||
{
|
||||
title: "Menü",
|
||||
items: [
|
||||
{
|
||||
label: "Hizmetlerimiz",
|
||||
href: "#features",
|
||||
},
|
||||
{
|
||||
label: "Hakkımızda",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "İletişim",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "İletişim",
|
||||
items: [
|
||||
{
|
||||
label: "(0212) 789 30 10",
|
||||
href: "tel:+902127893010",
|
||||
},
|
||||
{
|
||||
label: "Kaleiçi Mah. Çatalca",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Çağdaş Yemek | Tüm Hakları Saklıdır."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Çağdaş Yemek"
|
||||
columns={[
|
||||
{
|
||||
title: "Menü", items: [
|
||||
{ label: "Hizmetlerimiz", href: "#features" },
|
||||
{ label: "Hakkımızda", href: "#about" },
|
||||
{ label: "İletişim", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "İletişim", items: [
|
||||
{ label: "(0212) 789 30 10", href: "tel:+902127893010" },
|
||||
{ label: "Kaleiçi Mah. Çatalca", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Çağdaş Yemek | Tüm Hakları Saklıdır."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user