Merge version_2 into main #2
@@ -8,13 +8,15 @@ import ReactLenis from "lenis/react";
|
||||
export default function AboutPage() {
|
||||
const navItems = [{ name: "Anasayfa", id: "/" }, { name: "Hakkımızda", id: "/about" }, { name: "Hizmetler", id: "/services" }, { name: "İletişim", id: "/contact" }];
|
||||
return (
|
||||
<ThemeProvider><ReactLenis root>
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="GOYO" />
|
||||
<div className="pt-32 pb-20 px-8 container mx-auto text-center">
|
||||
<h1 className="text-6xl font-bold mb-6">Hakkımızda</h1>
|
||||
<p className="max-w-2xl mx-auto text-lg">GOYO, işletmelerin dijitalleşmesini yapay zeka ile hızlandırmak için kurulmuş bir teknoloji şirketidir.</p>
|
||||
</div>
|
||||
<FooterCard logoText="GOYO" columns={[{ title: "Menu", items: [{ label: "Anasayfa", href: "/" }] }]} />
|
||||
</ReactLenis></ThemeProvider>
|
||||
<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: "Demo", href: "/contact"}} />
|
||||
<div className="pt-32 pb-20 px-8 container mx-auto text-center">
|
||||
<h1 className="text-6xl font-bold mb-6">Hakkımızda</h1>
|
||||
<p className="max-w-2xl mx-auto text-lg">GOYO, işletmelerin dijitalleşmesini yapay zeka ile hızlandırmak için kurulmuş bir teknoloji şirketidir.</p>
|
||||
</div>
|
||||
<FooterCard logoText="GOYO" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -2,22 +2,23 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import ReactLenis from "lenis/react";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navItems = [{ name: "Anasayfa", id: "/" }, { name: "Hakkımızda", id: "/about" }, { name: "Hizmetler", id: "/services" }, { name: "İletişim", id: "/contact" }];
|
||||
return (
|
||||
<ThemeProvider><ReactLenis root>
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="GOYO" />
|
||||
<ContactSplitForm
|
||||
title="İletişime Geçin"
|
||||
description="GOYO ile işletmenizi büyütmeye başlamak için bize ulaşın."
|
||||
inputs={[{ name: "name", type: "text", placeholder: "İsim" }, { name: "email", type: "email", placeholder: "E-posta" }]}
|
||||
className="py-32"
|
||||
/>
|
||||
<FooterCard logoText="GOYO" columns={[{ title: "Menu", items: [{ label: "Anasayfa", href: "/" }] }]} />
|
||||
</ReactLenis></ThemeProvider>
|
||||
<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: "Demo", href: "/contact"}} />
|
||||
<ContactCenter
|
||||
title="İletişime Geçin"
|
||||
description="GOYO ile işletmenizi büyütmeye başlamak için bize ulaşın."
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterCard logoText="GOYO" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -19,8 +19,8 @@ const inter = Inter({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'GOYO | Türkiye\'nin İşletmelerine Yapay Zeka Gücü',
|
||||
description: 'GOYO ile işletmenizin yorumlarını yönetin, telefonlarınızı otomatikleştirin ve randevularınızı akıllı hale getirin. 7/24 kesintisiz teknoloji.',
|
||||
title: 'GOYO - İşletmeniz İçin Yapay Zeka',
|
||||
description: 'GOYO ile işletmenizi akıllı hale getirin. Google yorum yönetimi, telefon otomasyonu ve WhatsApp randevu sistemleri.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
|
||||
123
src/app/page.tsx
123
src/app/page.tsx
@@ -2,36 +2,36 @@
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import { Sparkles, Zap, BrainCircuit, MessageSquare, TrendingUp, Check, Bot } from "lucide-react";
|
||||
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
||||
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Zap, Bot, BrainCircuit } from "lucide-react";
|
||||
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: "Ürünler", id: "products" },
|
||||
{ name: "Hakkımızda", id: "about" },
|
||||
{ name: "İletişim", id: "contact" },
|
||||
{ name: "Anasayfa", id: "/" },
|
||||
{ name: "Hakkımızda", id: "/about" },
|
||||
{ name: "Hizmetler", id: "/services" },
|
||||
{ name: "İletişim", id: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="primary"
|
||||
defaultTextAnimation="slide-up"
|
||||
borderRadius="medium"
|
||||
contentWidth="large"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="white"
|
||||
cardStyle="plain"
|
||||
primaryButtonStyle="solid"
|
||||
secondaryButtonStyle="outline"
|
||||
headingFontWeight="semibold"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
@@ -39,81 +39,66 @@ export default function GoyoHomePage() {
|
||||
brandName="GOYO"
|
||||
button={{ text: "Demo Al", href: "https://wa.me/905514282368" }}
|
||||
/>
|
||||
<HeroSplit
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="Türkiye'nin İşletmelerine Yapay Zeka Gücü"
|
||||
<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."
|
||||
buttons={[
|
||||
{ text: "Ürünleri Keşfet", href: "#products" },
|
||||
{ text: "Demo Al", href: "https://wa.me/905514282368" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/technology-hologram-indoors_23-2151833345.jpg"
|
||||
imageAlt="GOYO Dashboard"
|
||||
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", imageAlt: "Dashboard" }, { imageSrc: "http://img.b2bpic.net/free-photo/technology-hologram-indoors_23-2151833345.jpg", imageAlt: "Dashboard" }]}
|
||||
rating={5}
|
||||
ratingText="5/5 Müşteri Memnuniyeti"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[{ type: 'text', content: 'İşletmeniz hâlâ manuel mi çalışıyor?' }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FeatureCardTwelve
|
||||
<FeatureCardTwentyThree
|
||||
title="Tek Çatı, Üç Güçlü Araç"
|
||||
description="İşletmenizin operasyonel yükünü hafifleten, verimliliği artıran yapay zeka çözümleri."
|
||||
tag="Ürünlerimiz"
|
||||
features={[
|
||||
{ id: "f1", label: "YorumTakip", title: "Google Yorumlarınız Artık Kendiliğinden Cevaplanıyor", items: ["AI tabanlı profesyonel analiz", "Telegram üzerinden onay mekanizması", "Google sıralama artışı"] },
|
||||
{ id: "f2", label: "Sesly", title: "Telefon Çalarken Siz Meşgulken Sesly Karşılıyor", items: ["Doğal Türkçe ses sentezi", "Otomatik randevu oluşturma", "Müşteri kaybını önleme"] },
|
||||
{ id: "f3", label: "WP Rezervasyon", title: "WhatsApp'tan Rezervasyon, Sıfır Manuel İş", items: ["Akıllı takvim önerileri", "Cal.com entegrasyonu", "Otomatik onay sistemi"] }
|
||||
{ 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}
|
||||
/>
|
||||
<MetricCardSeven
|
||||
<MetricCardTwo
|
||||
title="Rakamlarla GOYO"
|
||||
description="Türkiye genelinde aktif işletmelerden gerçek sonuçlar."
|
||||
tag="Sosyal Kanıt"
|
||||
metrics={[
|
||||
{ id: "rank", value: "11→1", title: "Sıralama", items: ["Google sıralaması iyileştirmesi"] },
|
||||
{ id: "response", value: "%100", title: "Cevap Oranı", items: ["Yorumlara eksiksiz geri dönüş"] },
|
||||
{ id: "uptime", value: "7/24", title: "Aktivite", items: ["Kesintisiz yapay zeka desteği"] }
|
||||
{ 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" }
|
||||
]}
|
||||
animationType="blur-reveal"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<TestimonialCardTwelve
|
||||
cardTitle="Neler Söylediler?"
|
||||
cardTag="Müşteri Görüşleri"
|
||||
cardAnimation="slide-up"
|
||||
testimonials={[
|
||||
{ id: "t1", name: "İşletme Sahibi", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-man-having-stubble-posing-with-arms-folded_171337-13417.jpg" }
|
||||
]}
|
||||
<TestimonialCardThirteen
|
||||
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}
|
||||
/>
|
||||
<FaqDouble
|
||||
<FaqBase
|
||||
title="Sıkça Sorulan Sorular"
|
||||
description="Aklınıza takılanları sizin için yanıtladık."
|
||||
faqs={[
|
||||
{ id: "q1", title: "Kurulum ne kadar sürer?", content: "Sistemimiz 30 dakika içinde kurulur ve çalışmaya başlar." },
|
||||
{ id: "q2", title: "Güvenli mi?", content: "Tüm entegrasyonlarımız resmi API kanalları üzerinden güvenle yapılır." }
|
||||
]}
|
||||
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}
|
||||
/>
|
||||
<ContactSplitForm
|
||||
<ContactCenter
|
||||
title="Ücretsiz Demo Alın"
|
||||
description="İşletmeniz için doğru araçları birlikte seçelim."
|
||||
inputs={[{ name: "name", type: "text", placeholder: "Adınız Soyadınız" }, { name: "email", type: "email", placeholder: "E-posta Adresiniz" }]}
|
||||
onSubmit={(data) => console.log(data)}
|
||||
description="İşletmeniz için doğru araçları seçin."
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "GOYO", items: [{ label: "Hakkımızda" }, { label: "İletişim" }] }
|
||||
]}
|
||||
bottomLeftText="© 2026 GOYO Teknoloji."
|
||||
bottomRightText="Tüm hakları saklıdır."
|
||||
<FooterCard
|
||||
logoText="GOYO"
|
||||
copyrightText="© 2026 GOYO Teknoloji."
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8,13 +8,15 @@ import ReactLenis from "lenis/react";
|
||||
export default function ServicesPage() {
|
||||
const navItems = [{ name: "Anasayfa", id: "/" }, { name: "Hakkımızda", id: "/about" }, { name: "Hizmetler", id: "/services" }, { name: "İletişim", id: "/contact" }];
|
||||
return (
|
||||
<ThemeProvider><ReactLenis root>
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="GOYO" />
|
||||
<div className="pt-32 pb-20 px-8 container mx-auto text-center">
|
||||
<h1 className="text-6xl font-bold mb-6">Hizmetlerimiz</h1>
|
||||
<p className="max-w-2xl mx-auto text-lg">İşletmeniz için tasarlanmış akıllı otomasyon çözümleri.</p>
|
||||
</div>
|
||||
<FooterCard logoText="GOYO" columns={[{ title: "Menu", items: [{ label: "Anasayfa", href: "/" }] }]} />
|
||||
</ReactLenis></ThemeProvider>
|
||||
<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: "Demo", href: "/contact"}} />
|
||||
<div className="pt-32 pb-20 px-8 container mx-auto text-center">
|
||||
<h1 className="text-6xl font-bold mb-6">Hizmetlerimiz</h1>
|
||||
<p className="max-w-2xl mx-auto text-lg">İşletmeniz için tasarlanmış akıllı otomasyon çözümleri.</p>
|
||||
</div>
|
||||
<FooterCard logoText="GOYO" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user