107 lines
5.4 KiB
TypeScript
107 lines
5.4 KiB
TypeScript
"use client";
|
||
|
||
import ReactLenis from "lenis/react";
|
||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
|
||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
|
||
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
|
||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||
|
||
export default function GoyoHomePage() {
|
||
const navItems = [
|
||
{ name: "Anasayfa", id: "/" },
|
||
{ name: "Hakkımızda", id: "/about" },
|
||
{ name: "Hizmetler", id: "/services" },
|
||
{ name: "İletişim", id: "/contact" },
|
||
];
|
||
|
||
return (
|
||
<ThemeProvider
|
||
defaultButtonVariant="hover-magnetic"
|
||
defaultTextAnimation="entrance-slide"
|
||
borderRadius="rounded"
|
||
contentWidth="medium"
|
||
sizing="medium"
|
||
background="none"
|
||
cardStyle="solid"
|
||
primaryButtonStyle="gradient"
|
||
secondaryButtonStyle="glass"
|
||
headingFontWeight="normal"
|
||
>
|
||
<ReactLenis root>
|
||
<NavbarLayoutFloatingInline
|
||
navItems={navItems}
|
||
brandName="GOYO"
|
||
button={{ text: "Başlayın", href: "/contact" }}
|
||
/>
|
||
<HeroSplitDualMedia
|
||
title="İşletmeniz İçin Yapay Zeka ile Büyüme"
|
||
description="Yorumlarınızı yönetin, telefonlarınızı otomatikleştirin, rezervasyonlarınızı akıllı hale getirin. GOYO'nun üç ürünü — tek çatı altında."
|
||
background={{ variant: "radial-gradient" }}
|
||
tag="Türkiye'nin İşletmelerine Yapay Zeka Gücü"
|
||
mediaItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/technology-hologram-indoors_23-2151833345.jpg?_wi=1", imageAlt: "Dashboard" }, { imageSrc: "http://img.b2bpic.net/free-photo/technology-hologram-indoors_23-2151833345.jpg?_wi=2", imageAlt: "Dashboard" }]}
|
||
rating={5}
|
||
ratingText="5/5 Müşteri Memnuniyeti"
|
||
mediaAnimation="slide-up"
|
||
/>
|
||
<FeatureCardTwentyThree
|
||
title="Tek Çatı, Üç Güçlü Araç"
|
||
description="İşletmenizin operasyonel yükünü hafifleten, verimliliği artıran yapay zeka çözümleri."
|
||
features={[
|
||
{ id: "f1", title: "YorumTakip", tags: ["Google", "Yorum", "Analiz"] },
|
||
{ id: "f2", title: "Sesly", tags: ["Telefon", "Otomasyon", "Randevu"] },
|
||
{ id: "f3", title: "WP Rezervasyon", tags: ["WhatsApp", "Takvim", "Otomatik"] }
|
||
]}
|
||
animationType="slide-up"
|
||
textboxLayout="default"
|
||
useInvertedBackground={false}
|
||
/>
|
||
<MetricCardTwo
|
||
title="Rakamlarla GOYO"
|
||
description="Türkiye genelinde aktif işletmelerden gerçek sonuçlar."
|
||
metrics={[
|
||
{ id: "rank", value: "11→1", description: "Google Sıralaması İyileştirmesi" },
|
||
{ id: "resp", value: "%100", description: "Yorumlara Geri Dönüş" },
|
||
{ id: "uptime", value: "7/24", description: "Kesintisiz AI Desteği" }
|
||
]}
|
||
gridVariant="uniform-all-items-equal"
|
||
animationType="slide-up"
|
||
textboxLayout="default"
|
||
useInvertedBackground={false}
|
||
/>
|
||
<TestimonialCardThirteen
|
||
title="Müşteri Görüşleri"
|
||
description="GOYO kullanıcılarının deneyimleri."
|
||
testimonials={[{ id: "t1", name: "İşletme Sahibi", handle: "@goyouser", testimonial: "GOYO ile işletmem tamamen değişti, artık manuel hiçbir işlem yapmıyorum.", rating: 5 }]}
|
||
showRating={true}
|
||
animationType="slide-up"
|
||
textboxLayout="default"
|
||
useInvertedBackground={false}
|
||
/>
|
||
<FaqBase
|
||
title="Sıkça Sorulan Sorular"
|
||
description="Aklınıza takılanları yanıtladık."
|
||
faqs={[{ id: "q1", title: "Kurulum süresi nedir?", content: "30 dakika içerisinde kurulum tamamlanır." }]}
|
||
faqsAnimation="slide-up"
|
||
textboxLayout="default"
|
||
useInvertedBackground={false}
|
||
/>
|
||
<ContactCenter
|
||
tag="Destek"
|
||
title="Ücretsiz Demo Alın"
|
||
description="İşletmeniz için doğru araçları seçin."
|
||
useInvertedBackground={false}
|
||
background={{ variant: "plain" }}
|
||
/>
|
||
<FooterCard
|
||
logoText="GOYO"
|
||
copyrightText="© 2026 GOYO Teknoloji."
|
||
/>
|
||
</ReactLenis>
|
||
</ThemeProvider>
|
||
);
|
||
} |