Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5deecd63df | |||
| 7a7676861f | |||
| 7a16fc9910 | |||
| eab43e5fa6 | |||
| 8a3354e7cd | |||
| 67a7da9679 | |||
| f471592192 | |||
| 1bcc94e988 | |||
| 5d1ce4db5a | |||
| 285b008c56 | |||
| f3f50d186d | |||
| a8eb81e283 | |||
| 3b18d1be2d | |||
| b7656bc54b | |||
| 358e416076 | |||
| 9a91ea952d | |||
| 6772d6ab67 | |||
| 821a53c428 | |||
| 0621a0bb15 |
22
src/app/about/page.tsx
Normal file
22
src/app/about/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
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 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>
|
||||
);
|
||||
}
|
||||
30
src/app/contact/page.tsx
Normal file
30
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
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 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" }}
|
||||
/>
|
||||
<ContactCenter
|
||||
tag="İletişim"
|
||||
title="İletişime Geçin"
|
||||
description="GOYO ile işletmenizi büyütmeye başlamak için bize ulaşın."
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
<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({
|
||||
|
||||
157
src/app/page.tsx
157
src/app/page.tsx
@@ -2,139 +2,106 @@
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||
import TextAbout from "@/components/sections/about/TextAbout";
|
||||
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import { Sparkles, Users, Phone, CalendarDays, BrainCircuit, MessageSquare, Zap } from "lucide-react";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
||||
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
|
||||
import { Check, Bot, TrendingUp } from "lucide-react";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
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: "hakkimizda" },
|
||||
{ name: "İletişim", id: "iletisim" },
|
||||
{ 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
|
||||
navItems={navItems}
|
||||
brandName="GOYO"
|
||||
button={{ text: "Demo Al", href: "https://wa.me/905514282368" }}
|
||||
button={{ text: "Başlayın", href: "/contact" }}
|
||||
/>
|
||||
<HeroSplitKpi
|
||||
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."
|
||||
enableKpiAnimation={true}
|
||||
kpis={[
|
||||
{ value: "30 sn", label: "Ortalama Cevap Süresi" },
|
||||
{ value: "7/24", label: "Kesintisiz Aktivite" },
|
||||
{ value: "11→1", label: "Google Sıralama İyileşmesi" },
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Ürünleri Keşfet", href: "#urunler" },
|
||||
{ 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?_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"
|
||||
/>
|
||||
<TextAbout
|
||||
title="İşletmeniz hâlâ manuel mi çalışıyor?"
|
||||
buttons={[]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FeatureCardNineteen
|
||||
<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={[
|
||||
{
|
||||
tag: "YorumTakip", title: "01", subtitle: "Google Yorumlarınız Artık Kendiliğinden Cevaplanıyor", description: "Yapay zeka her yorumu analiz eder, işletmenizin sesine uygun profesyonel cevap hazırlar. Siz Telegram'dan tek tuşla onaylarsınız. Google sıralamanızı yükseltin.", imageSrc: "http://img.b2bpic.net/free-photo/bucharest-romania-july-30th-2024-man-typing-prompts-into-ai-powered-chat_482257-123072.jpg"
|
||||
},
|
||||
{
|
||||
tag: "Sesly", title: "02", subtitle: "Telefon Çalarken Siz Meşgulken Sesly Karşılıyor", description: "Doğal Türkçe ses ile her çağrıyı karşılar, randevu oluşturur, WhatsApp'tan onay gönderir. Müşteri kaybetmeden, personelinizi yormadan.", imageSrc: "http://img.b2bpic.net/free-photo/incoming-call-screen-from-sale-close-up_169016-41500.jpg"
|
||||
},
|
||||
{
|
||||
tag: "WP Rezervasyon", title: "03", subtitle: "WhatsApp'tan Rezervasyon, Sıfır Manuel İş", description: "Müşteri WhatsApp'tan mesaj atar, AI uygun saatleri önerir, rezervasyonu onaylar ve Cal.com entegrasyonu ile takviminizi yönetir.", imageSrc: "http://img.b2bpic.net/free-photo/realistic-phone-studio-social-media-concept_23-2151459506.jpg"
|
||||
}
|
||||
{ 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"] }
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FeatureCardTen
|
||||
tag="Nasıl Çalışır?"
|
||||
tagIcon={BrainCircuit}
|
||||
title="Kurulum 30 Dakika, Otomasyon Sonsuza"
|
||||
description="Karmaşık kurulumlar yok, hızlı başlangıç ve yüksek verim."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Entegrasyon", description: "Google Business, telefon hattınız ve WhatsApp hesabınızı güvenli şekilde API ile bağlıyoruz.", media: { imageSrc: "http://img.b2bpic.net/free-photo/business-network-background-connecting-dots-technology-design_53876-153344.jpg" },
|
||||
reverse: false,
|
||||
items: [{ icon: Check, text: "API tabanlı güvenli bağlantı" }]
|
||||
},
|
||||
{
|
||||
title: "AI Aktivasyonu", description: "Yapay zeka sisteminiz işletmenizin sesini, hizmetlerini ve müşteri profilini öğreniyor.", media: { imageSrc: "http://img.b2bpic.net/free-vector/ai-chip-brain-lineal-flat_78370-9690.jpg" },
|
||||
reverse: true,
|
||||
items: [{ icon: Bot, text: "Kişiselleştirilmiş AI yanıt motoru" }]
|
||||
},
|
||||
{
|
||||
title: "Tam Kontrol", description: "Her aksiyon size geliyor. Onaylıyorsunuz, düzenliyorsunuz veya iptal ediyorsunuz.", media: { imageSrc: "http://img.b2bpic.net/free-vector/check-mark-star-cirlce-square-gradient_78370-4477.jpg" },
|
||||
reverse: false,
|
||||
items: [{ icon: Check, text: "Telegram üzerinden anlık kontrol" }]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<MetricCardOne
|
||||
<MetricCardTwo
|
||||
title="Rakamlarla GOYO"
|
||||
description="Türkiye genelinde aktif işletmelerden gerçek sonuçlar."
|
||||
tag="Sosyal Kanıt"
|
||||
tagIcon={TrendingUp}
|
||||
metrics={[
|
||||
{ id: "rank", value: "11→1", title: "Sıralama", description: "Google sıralaması iyileştirmesi", icon: TrendingUp },
|
||||
{ id: "response", value: "%100", title: "Cevap Oranı", description: "Yorumlara eksiksiz geri dönüş", icon: MessageSquare },
|
||||
{ id: "uptime", value: "7/24", title: "Aktivite", description: "Kesintisiz yapay zeka desteği", icon: Zap }
|
||||
{ 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="blur-reveal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<ContactText
|
||||
text="İşletmeniz İçin Doğru Araçları Birlikte Seçelim. Ücretsiz 30 dakikalık demo."
|
||||
buttons={[{ text: "Ücretsiz Demo Al", href: "https://wa.me/905514282368" }]}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={true}
|
||||
<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}
|
||||
/>
|
||||
<FooterCard
|
||||
<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. Tüm hakları saklıdır."
|
||||
copyrightText="© 2026 GOYO Teknoloji."
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
22
src/app/services/page.tsx
Normal file
22
src/app/services/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
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 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