Merge version_3_1781996291571 into main #4
@@ -1,152 +1,36 @@
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee';
|
||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
|
||||
import { CheckCircle, Shield, Star, Zap } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import ProductsSection from './HomePage/sections/Products';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import FeaturesSection from './HomePage/sections/Features';
|
||||
import ReviewsSection from './HomePage/sections/Reviews';
|
||||
import ProofSection from './HomePage/sections/Proof';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroOverlayMarquee
|
||||
tag="PREMIUM KARAVAN DENEYİMİ"
|
||||
title="Özgürlüğün Tadını Yolda Çıkar"
|
||||
description="Liva Karavan ile sınırları kaldırın. Tesla ve Airstream'den esinlenen minimalist tasarım, üstün konfor ve 2 yıl tam garanti."
|
||||
primaryButton={{
|
||||
text: "Modelleri İncele", href: "#products"}}
|
||||
secondaryButton={{
|
||||
text: "WhatsApp Teklif", href: "https://wa.me/905550000000"}}
|
||||
items={[
|
||||
{
|
||||
text: "%100 CTP Gövde", icon: CheckCircle,
|
||||
},
|
||||
{
|
||||
text: "2 Yıl Garanti", icon: Shield,
|
||||
},
|
||||
{
|
||||
text: "4.6 Google Puanı", icon: Star,
|
||||
},
|
||||
{
|
||||
text: "Üstün Yalıtım", icon: Zap,
|
||||
},
|
||||
]}
|
||||
videoSrc="http://img.b2bpic.net/free-photo/beautiful-landscape-with-rainbow-van_23-2149768970.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<SectionErrorBoundary name="products">
|
||||
<FeaturesImageBento
|
||||
tag="LÜKS MODELLER"
|
||||
title="Karavan Dünyasında Yeni Standart"
|
||||
description="Her detayı özenle tasarlanmış, üstün mühendislik harikası modellerimizi keşfedin."
|
||||
items={[
|
||||
{ title: "Liva Vega", description: "6 Kişilik Konfor", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-cooking_23-2149268840.jpg" },
|
||||
{ title: "Liva Nova", description: "Kompakt ve Şık", imageSrc: "http://img.b2bpic.net/free-photo/cozy-van-interior-prepared-camping_23-2151938567.jpg" },
|
||||
{ title: "Liva Terra", description: "Doğayla Bütünleş", imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-wooden-house-interior-with-timber-decor-furnishings_23-2151263566.jpg" },
|
||||
{ title: "Liva Aura", description: "Ultra Geniş İç Hacim", imageSrc: "http://img.b2bpic.net/free-photo/woman-preparing-coffee-herself-her-lover-winter-trip_23-2149298503.jpg" },
|
||||
{ title: "Liva Prime", description: "Maksimum Donanım", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-bed-inside-vintage-wooden-van_181624-57013.jpg" },
|
||||
{ title: "Liva Eco", description: "Sürdürülebilir Tasarım", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-using-digital-device-while-travelling_23-2149119722.jpg" },
|
||||
{ title: "Liva Pro", description: "Profesyonel Karavan", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-using-digital-device-while-travelling_23-2149119740.jpg" }
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ProductsSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsSimpleCards
|
||||
tag="BAŞARILARIMIZ"
|
||||
title="Güven ve Kalite"
|
||||
description="Mutlu müşteriler ve binlerce kilometrelik tecrübe ile hizmetinizdeyiz."
|
||||
metrics={[
|
||||
{ value: "100+", description: "Mutlu Müşteri" },
|
||||
{ value: "4.6", description: "Google Puanı" },
|
||||
{ value: "2 Yıl", description: "Tam Garanti" },
|
||||
{ value: "100%", description: "Memnuniyet" }
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesDetailedSteps
|
||||
tag="NEDEN LIVA"
|
||||
title="Apple Stili Detaylar"
|
||||
description="Premium malzemeler ve akıllı çözümlerle donatılmış iç mekanlar."
|
||||
steps={[
|
||||
{ tag: "YAŞAM ALANI", title: "Konfor Odaklı İç Tasarım", subtitle: "Premium dokunuşlar", description: "Ergonomik mobilyalar ve geniş depolama alanları ile ev konforu.", imageSrc: "http://img.b2bpic.net/free-photo/male-traveler-making-his-coffee-van_23-2149119542.jpg" },
|
||||
{ tag: "YATAK ODASI", title: "Huzurlu Uykular", subtitle: "Özel tasarım yataklar", description: "Özel izolasyonlu yatak odası ile sessiz ve huzurlu bir dinlenme.", imageSrc: "http://img.b2bpic.net/free-photo/cozy-van-interior-prepared-camping_23-2151938563.jpg" },
|
||||
{ tag: "TEKNİK", title: "Uzun Ömürlü Gövde", subtitle: "CTP Teknolojisi", description: "Suya dayanıklı, çürümez ve kolay temizlenebilir gövde yapısı.", imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-outdoors-medium-shot_23-2148927251.jpg" }
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FeaturesSection />
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<SectionErrorBoundary name="reviews">
|
||||
<TestimonialOverlayCards
|
||||
tag="MÜŞTERİLERİMİZ"
|
||||
title="Ne Dediler?"
|
||||
description="Liva Karavan deneyimini yaşayan müşterilerimizin geri bildirimleri."
|
||||
testimonials={[
|
||||
{ name: "Ahmet Yılmaz", role: "Maceracı", company: "Antalya", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-modern-female_23-2148415853.jpg" },
|
||||
{ name: "Zeynep Demir", role: "Dijital Göçebe", company: "İstanbul", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151098593.jpg" },
|
||||
{ name: "Caner Kaya", role: "Doğasever", company: "Ankara", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3267.jpg" },
|
||||
{ name: "Merve Şahin", role: "Mimari Tasarımcı", company: "İzmir", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67131.jpg" },
|
||||
{ name: "Burak Öz", role: "Girişimci", company: "Muğla", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg" }
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ReviewsSection />
|
||||
|
||||
<div id="proof" data-section="proof">
|
||||
<SectionErrorBoundary name="proof">
|
||||
<SocialProofMarquee
|
||||
tag="İŞ ORTAKLARIMIZ"
|
||||
title="Sektörel Güven"
|
||||
description="Dünyanın en iyi markalarıyla iş birliği içerisindeyiz."
|
||||
names={["Mercedes-Benz", "Dometic", "Truma", "Victron", "Thule", "Al-Ko", "Solaris"]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ProofSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="BİLGİ"
|
||||
title="Sıkça Sorulan Sorular"
|
||||
description="Karavan hayatı hakkında merak edilenler."
|
||||
categories={[
|
||||
{
|
||||
name: "Genel", items: [
|
||||
{ question: "Teslimat ne kadar sürer?", answer: "Modellere göre 2-4 ay arası değişmektedir." },
|
||||
{ question: "Garanti kapsamında neler var?", answer: "Tüm karavan gövdesi 2 yıl garantilidir." }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="İLETİŞİM"
|
||||
text="Hayalinizdeki karavana bir adım uzaktasınız."
|
||||
primaryButton={{ text: "WhatsApp", href: "https://wa.me/905550000000" }}
|
||||
secondaryButton={{ text: "Yol Tarifi", href: "#" }}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
21
src/pages/HomePage/sections/Contact.tsx
Normal file
21
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="İLETİŞİM"
|
||||
text="Hayalinizdeki karavana bir adım uzaktasınız."
|
||||
primaryButton={{ text: "WhatsApp", href: "https://wa.me/905550000000" }}
|
||||
secondaryButton={{ text: "Yol Tarifi", href: "#" }}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Faq.tsx
Normal file
28
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="BİLGİ"
|
||||
title="Sıkça Sorulan Sorular"
|
||||
description="Karavan hayatı hakkında merak edilenler."
|
||||
categories={[
|
||||
{
|
||||
name: "Genel", items: [
|
||||
{ question: "Teslimat ne kadar sürer?", answer: "Modellere göre 2-4 ay arası değişmektedir." },
|
||||
{ question: "Garanti kapsamında neler var?", answer: "Tüm karavan gövdesi 2 yıl garantilidir." }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
25
src/pages/HomePage/sections/Features.tsx
Normal file
25
src/pages/HomePage/sections/Features.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "features" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FeaturesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesDetailedSteps
|
||||
tag="NEDEN LIVA"
|
||||
title="Apple Stili Detaylar"
|
||||
description="Premium malzemeler ve akıllı çözümlerle donatılmış iç mekanlar."
|
||||
steps={[
|
||||
{ tag: "YAŞAM ALANI", title: "Konfor Odaklı İç Tasarım", subtitle: "Premium dokunuşlar", description: "Ergonomik mobilyalar ve geniş depolama alanları ile ev konforu.", imageSrc: "http://img.b2bpic.net/free-photo/male-traveler-making-his-coffee-van_23-2149119542.jpg" },
|
||||
{ tag: "YATAK ODASI", title: "Huzurlu Uykular", subtitle: "Özel tasarım yataklar", description: "Özel izolasyonlu yatak odası ile sessiz ve huzurlu bir dinlenme.", imageSrc: "http://img.b2bpic.net/free-photo/cozy-van-interior-prepared-camping_23-2151938563.jpg" },
|
||||
{ tag: "TEKNİK", title: "Uzun Ömürlü Gövde", subtitle: "CTP Teknolojisi", description: "Suya dayanıklı, çürümez ve kolay temizlenebilir gövde yapısı.", imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-outdoors-medium-shot_23-2148927251.jpg" }
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
145
src/pages/HomePage/sections/Hero.tsx
Normal file
145
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,145 @@
|
||||
/* eslint-disable */
|
||||
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
|
||||
import { useRef } from 'react';
|
||||
import { motion, useScroll, useTransform } from 'motion/react';
|
||||
import { CheckCircle, Shield, Star, Zap } from 'lucide-react';
|
||||
import type { LucideIcon } from "lucide-react";
|
||||
|
||||
import Button from "@/components/ui/Button";
|
||||
import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import AvatarGroup from "@/components/ui/AvatarGroup";
|
||||
|
||||
const primaryButton = {
|
||||
text: "Modelleri İncele",
|
||||
href: "#products"
|
||||
};
|
||||
const secondaryButton = {
|
||||
text: "WhatsApp Teklif",
|
||||
href: "https://wa.me/905550000000"
|
||||
};
|
||||
const items = [
|
||||
{
|
||||
text: "%100 CTP Gövde",
|
||||
icon: CheckCircle
|
||||
},
|
||||
{
|
||||
text: "2 Yıl Garanti",
|
||||
icon: Shield
|
||||
},
|
||||
{
|
||||
text: "4.6 Google Puanı",
|
||||
icon: Star
|
||||
},
|
||||
{
|
||||
text: "Üstün Yalıtım",
|
||||
icon: Zap
|
||||
}
|
||||
];
|
||||
|
||||
type HeroOverlayMarqueeProps = {
|
||||
tag: string;
|
||||
title: string;
|
||||
description: string;
|
||||
primaryButton: { text: string; href: string };
|
||||
secondaryButton: { text: string; href: string };
|
||||
avatarsSrc?: string[];
|
||||
avatarsLabel?: string;
|
||||
items: { text: string; icon: LucideIcon }[];
|
||||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
||||
|
||||
const HeroInline = () => {
|
||||
const containerRef = useRef(null);
|
||||
const { scrollYProgress } = useScroll({
|
||||
target: containerRef as any,
|
||||
offset: ["start start", "end start"]
|
||||
});
|
||||
|
||||
const caravanX = useTransform(scrollYProgress, [0, 1], ["0%", "-80vw"]);
|
||||
|
||||
return (
|
||||
<section
|
||||
ref={containerRef as any}
|
||||
aria-label="Hero section"
|
||||
className="relative overflow-hidden flex flex-col justify-between mb-20 w-full h-svh"
|
||||
>
|
||||
<HeroBackgroundSlot />
|
||||
<ImageOrVideo
|
||||
videoSrc={"http://img.b2bpic.net/free-photo/beautiful-landscape-with-rainbow-van_23-2149768970.jpg"}
|
||||
className="absolute inset-0 object-cover w-full h-full rounded-none"
|
||||
/>
|
||||
|
||||
<div
|
||||
className="absolute z-10 left-0 top-0 w-[150vw] h-[150vw] -translate-x-1/2 -translate-y-1/2 backdrop-blur mask-[radial-gradient(circle,black_20%,transparent_70%)]"
|
||||
aria-hidden="true"
|
||||
/>
|
||||
|
||||
<div className="relative z-10 mx-auto pt-35 w-content-width">
|
||||
<div className="flex flex-col gap-3 w-full md:w-6/10 lg:w-1/2 xl:w-45/100 2xl:w-4/10">
|
||||
<div className="mb-1 px-3 py-1 w-fit text-sm card rounded">
|
||||
<p>{"PREMIUM KARAVAN DENEYİMİ"}</p>
|
||||
</div>
|
||||
|
||||
<TextAnimation
|
||||
text={"Özgürlüğün Tadını Yolda Çıkar"}
|
||||
variant="fade-blur"
|
||||
gradientText={true}
|
||||
tag="h1"
|
||||
className="text-7xl 2xl:text-8xl leading-[1.15] font-semibold text-balance text-white"
|
||||
/>
|
||||
|
||||
<TextAnimation
|
||||
text={"Liva Karavan ile sınırları kaldırın. Tesla ve Airstream'den esinlenen minimalist tasarım, üstün konfor ve 2 yıl tam garanti."}
|
||||
variant="fade-blur"
|
||||
gradientText={false}
|
||||
tag="p"
|
||||
className="text-lg md:text-xl leading-snug text-balance text-white"
|
||||
/>
|
||||
|
||||
<div className="flex flex-wrap gap-3 mt-2 md:mt-3">
|
||||
<Button text={primaryButton.text} href={primaryButton.href} variant="primary" />
|
||||
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} />
|
||||
</div>
|
||||
|
||||
{undefined && undefined.length > 0 && (
|
||||
<div className="mt-3 md:mt-4">
|
||||
<AvatarGroup size="lg" labelClassName="text-primary-cta-text" />
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Moving Caravan Image */}
|
||||
<motion.div
|
||||
className="absolute bottom-32 right-[-5%] z-20 w-[800px] max-w-[85vw] pointer-events-none"
|
||||
style={{ x: caravanX }}
|
||||
>
|
||||
<img
|
||||
src="https://images.unsplash.com/photo-1561361513-2d000a50f0dc?q=80&w=2076&auto=format&fit=crop"
|
||||
alt="Luxury Caravan"
|
||||
className="w-full h-auto rounded-2xl shadow-2xl border-4 border-white/10"
|
||||
/>
|
||||
</motion.div>
|
||||
|
||||
<div className="relative z-10 overflow-hidden mx-auto pb-8 w-content-width mask-fade-x">
|
||||
<div className="flex w-max animate-marquee-horizontal" style={{ animationDuration: "30s" }}>
|
||||
{[...items, ...items, ...items, ...items].map((item, index) => (
|
||||
<div key={index} className="flex items-center shrink-0 gap-1 mx-3 pl-2 pr-4 py-2 card rounded">
|
||||
<item.icon className="h-(--text-base) text-foreground" />
|
||||
<span className="whitespace-nowrap text-base font-medium text-foreground">{item.text}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default function HeroSection() {
|
||||
return (
|
||||
<div data-webild-section="hero" id="hero">
|
||||
<HeroInline />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
26
src/pages/HomePage/sections/Metrics.tsx
Normal file
26
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsSimpleCards
|
||||
tag="BAŞARILARIMIZ"
|
||||
title="Güven ve Kalite"
|
||||
description="Mutlu müşteriler ve binlerce kilometrelik tecrübe ile hizmetinizdeyiz."
|
||||
metrics={[
|
||||
{ value: "100+", description: "Mutlu Müşteri" },
|
||||
{ value: "4.6", description: "Google Puanı" },
|
||||
{ value: "2 Yıl", description: "Tam Garanti" },
|
||||
{ value: "100%", description: "Memnuniyet" }
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
29
src/pages/HomePage/sections/Products.tsx
Normal file
29
src/pages/HomePage/sections/Products.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "products" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ProductsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="products" data-section="products">
|
||||
<SectionErrorBoundary name="products">
|
||||
<FeaturesImageBento
|
||||
tag="LÜKS MODELLER"
|
||||
title="Karavan Dünyasında Yeni Standart"
|
||||
description="Her detayı özenle tasarlanmış, üstün mühendislik harikası modellerimizi keşfedin."
|
||||
items={[
|
||||
{ title: "Liva Vega", description: "6 Kişilik Konfor", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-cooking_23-2149268840.jpg" },
|
||||
{ title: "Liva Nova", description: "Kompakt ve Şık", imageSrc: "http://img.b2bpic.net/free-photo/cozy-van-interior-prepared-camping_23-2151938567.jpg" },
|
||||
{ title: "Liva Terra", description: "Doğayla Bütünleş", imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-wooden-house-interior-with-timber-decor-furnishings_23-2151263566.jpg" },
|
||||
{ title: "Liva Aura", description: "Ultra Geniş İç Hacim", imageSrc: "http://img.b2bpic.net/free-photo/woman-preparing-coffee-herself-her-lover-winter-trip_23-2149298503.jpg" },
|
||||
{ title: "Liva Prime", description: "Maksimum Donanım", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-bed-inside-vintage-wooden-van_181624-57013.jpg" },
|
||||
{ title: "Liva Eco", description: "Sürdürülebilir Tasarım", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-using-digital-device-while-travelling_23-2149119722.jpg" },
|
||||
{ title: "Liva Pro", description: "Profesyonel Karavan", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-using-digital-device-while-travelling_23-2149119740.jpg" }
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
21
src/pages/HomePage/sections/Proof.tsx
Normal file
21
src/pages/HomePage/sections/Proof.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "proof" section.
|
||||
|
||||
import React from 'react';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ProofSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="proof" data-section="proof">
|
||||
<SectionErrorBoundary name="proof">
|
||||
<SocialProofMarquee
|
||||
tag="İŞ ORTAKLARIMIZ"
|
||||
title="Sektörel Güven"
|
||||
description="Dünyanın en iyi markalarıyla iş birliği içerisindeyiz."
|
||||
names={["Mercedes-Benz", "Dometic", "Truma", "Victron", "Thule", "Al-Ko", "Solaris"]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Reviews.tsx
Normal file
27
src/pages/HomePage/sections/Reviews.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "reviews" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ReviewsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="reviews" data-section="reviews">
|
||||
<SectionErrorBoundary name="reviews">
|
||||
<TestimonialOverlayCards
|
||||
tag="MÜŞTERİLERİMİZ"
|
||||
title="Ne Dediler?"
|
||||
description="Liva Karavan deneyimini yaşayan müşterilerimizin geri bildirimleri."
|
||||
testimonials={[
|
||||
{ name: "Ahmet Yılmaz", role: "Maceracı", company: "Antalya", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-modern-female_23-2148415853.jpg" },
|
||||
{ name: "Zeynep Demir", role: "Dijital Göçebe", company: "İstanbul", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151098593.jpg" },
|
||||
{ name: "Caner Kaya", role: "Doğasever", company: "Ankara", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3267.jpg" },
|
||||
{ name: "Merve Şahin", role: "Mimari Tasarımcı", company: "İzmir", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67131.jpg" },
|
||||
{ name: "Burak Öz", role: "Girişimci", company: "Muğla", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg" }
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user