Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 56257f2178 | |||
| 12f4072b74 |
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -114,60 +114,59 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardTwelve
|
<TestimonialCardSix
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
title="Müşterilerimiz Ne Diyor?"
|
||||||
|
description="Uzman Otomotiv kalitesinden memnun kalan değerli müşterilerimizin yorumları."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{ id: "t1", name: "Ahmet Yılmaz", imageSrc: "http://img.b2bpic.net/free-photo/man-sitting-car-talking-smartphone_23-2147841923.jpg" },
|
{ id: "t1", name: "Ahmet Yılmaz", handle: "@ayilmaz", testimonial: "Tofaş parçalarımı her zaman buradan alırım, çok ilgililer." },
|
||||||
{ id: "t2", name: "Mehmet Demir", imageSrc: "http://img.b2bpic.net/free-photo/man-repairing-bicycle-workshop_23-2147892662.jpg" },
|
{ id: "t2", name: "Mehmet Demir", handle: "@mdemir", testimonial: "Aradığım nadir parçayı kısa sürede buldular, teşekkürler.", imageSrc: "http://img.b2bpic.net/free-photo/man-repairing-bicycle-workshop_23-2147892662.jpg" },
|
||||||
{ id: "t3", name: "Selim Kaya", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-traveling-by-red-car_23-2149204046.jpg" },
|
|
||||||
{ id: "t4", name: "Zeynep Şahin", imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-nut-key-mechanic-s-arm_613910-13714.jpg" },
|
|
||||||
{ id: "t5", name: "Murat Aydın", imageSrc: "http://img.b2bpic.net/free-photo/portrait-salesman-car-dealership_23-2148130099.jpg" },
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Müşterilerimiz Ne Diyor?"
|
|
||||||
cardTag="Güvenilir Tedarik"
|
|
||||||
cardAnimation="slide-up"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitMedia
|
<FaqBase
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
|
||||||
{ id: "q1", title: "Stokta olmayan parçayı getiriyor musunuz?", content: "Evet, özel siparişlerle bulunması zor klasik parçaları en kısa sürede tedarik ediyoruz." },
|
|
||||||
{ id: "q2", title: "Parçalarınız garantili mi?", content: "Tüm orijinal yedek parçalarımız işletmemiz güvencesi altındadır." },
|
|
||||||
{ id: "q3", title: "Konya dışına gönderim yapıyor musunuz?", content: "Türkiye'nin dört bir yanına kargo ile hızlı gönderim sağlıyoruz." },
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/car-accessories-with-copy-space_23-2149030436.jpg"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
title="Sıkça Sorulan Sorular"
|
title="Sıkça Sorulan Sorular"
|
||||||
description="Klasik Fiat ve Tofaş yedek parçaları hakkında merak ettikleriniz."
|
description="Tofaş yedek parça süreçlerimiz hakkında bilmeniz gerekenler."
|
||||||
|
faqs={[
|
||||||
|
{ id: "q1", title: "Parça garantisi veriyor musunuz?", content: "Evet, tüm orijinal parçalarımız faturalı ve garantilidir." },
|
||||||
|
{ id: "q2", title: "Kargo ile parça gönderimi yapıyor musunuz?", content: "Tüm Türkiye'ye aynı gün kargo avantajımız bulunmaktadır." },
|
||||||
|
{ id: "q3", title: "Klasik araçlar için yedek parça temini zor mudur?", content: "Uzman Otomotiv geniş ağıyla zor bulunan tüm parçaları tedarik edebilmektedir." },
|
||||||
|
]}
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
tag="İletişim"
|
|
||||||
title="Bize Ulaşın"
|
title="Bize Ulaşın"
|
||||||
description="Klasik aracınız için parça desteği almak için hemen iletişime geçin."
|
description="Parça sorgulama veya detaylı bilgi için formu doldurarak bize ulaşın."
|
||||||
|
inputs={[
|
||||||
|
{ name: "name", type: "text", placeholder: "Adınız Soyadınız" },
|
||||||
|
{ name: "email", type: "email", placeholder: "E-posta Adresiniz" },
|
||||||
|
{ name: "phone", type: "tel", placeholder: "Telefon Numaranız" }
|
||||||
|
]}
|
||||||
|
useInvertedBackground={true}
|
||||||
|
buttonText="Gönder"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterBaseCard
|
||||||
|
logoText="Uzman Otomotiv"
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Uzman Otomotiv", items: [{ label: "Konya Sanayi Sitesi", href: "#" }, { label: "İletişim", href: "#contact" }] },
|
{ title: "Kurumsal", items: [{ label: "Hakkımızda", href: "#about" }, { label: "İletişim", href: "#contact" }] },
|
||||||
{ title: "Parçalar", items: [{ label: "Fiat Yedek Parça", href: "#products" }, { label: "Tofaş Yedek Parça", href: "#products" }] },
|
{ title: "Yedek Parça", items: [{ label: "Fiat Parçaları", href: "#products" }, { label: "Tofaş Parçaları", href: "#products" }] }
|
||||||
{ title: "Hakkımızda", items: [{ label: "Biz Kimiz", href: "#about" }, { label: "KVKK Politikası", href: "#" }] },
|
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2024 Uzman Otomotiv"
|
copyrightText="© 2025 Uzman Otomotiv"
|
||||||
bottomRightText="Konya, Türkiye"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user