import { Button } from "@/components/ui/button"; import { ChevronRight, Code2, Zap, Smartphone, ShoppingCart, TrendingUp, Award, Users, ArrowRight, ChevronLeft, ChevronDown } from "lucide-react"; import { useState, useEffect } from "react"; /** * Design Philosophy: Dark Mode Premium Tech Agency * - Black background (#000000) with blue (#2563EB) and orange (#F97316) accents * - Minimalist, modern, professional aesthetic * - Smooth animations and transitions with Framer Motion * - Asymmetric layouts with ample whitespace * - Scroll-triggered animations and parallax effects */ export default function Home() { const [activeService, setActiveService] = useState(0); const [activeProject, setActiveProject] = useState(0); const [showScrollTop, setShowScrollTop] = useState(false); const [visibleSections, setVisibleSections] = useState>({}); useEffect(() => { const handleScroll = () => { setShowScrollTop(window.scrollY > 500); }; window.addEventListener("scroll", handleScroll); return () => window.removeEventListener("scroll", handleScroll); }, []); const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth" }); }; const services = [ { title: "Web Tasarım & Yazılım", description: "Responsive, hızlı, SEO uyumlu web siteleri ve özel yazılım çözümleri.", icon: Code2, color: "text-blue-400", }, { title: "Yazılım Ürünleri", description: "SaaS, mobil uygulamalar ve kurumsal yazılım çözümleri.", icon: Zap, color: "text-orange-400", }, { title: "Mobil Uygulamalar", description: "iOS ve Android için native ve cross-platform uygulamalar.", icon: Smartphone, color: "text-blue-400", }, { title: "E-ticaret Çözümleri", description: "Özel e-ticaret siteleri, pazaryeri entegrasyonları, ödeme sistemleri.", icon: ShoppingCart, color: "text-orange-400", }, { title: "SEO & Dijital Reklam", description: "Google'da ilk sırada görünün. Google Ads, Meta reklamları, organik SEO.", icon: TrendingUp, color: "text-blue-400", }, { title: "Kurumsal Kimlik & Tasarım", description: "Logo, kartvizit, katalog, ambalaj – markanızı güçlendiren tasarımlar.", icon: Award, color: "text-orange-400", }, ]; const projects = [ { title: "Sub-Zero Yetkili Servisi", description: "Dünyanın en prestijli soğutma markası için geliştirilen; lüks segment standartlarında kullanıcı deneyimi ve tam entegre CRM.", image: "https://d2xsxph8kpxj0f.cloudfront.net/310519663248831776/F8YdZ57En9QeMJoxbZtWaj/project-showcase-1-WVspus4bH8nsHE9TtHgiGz.webp", tech: ["React", "Node.js", "PostgreSQL"], }, { title: "Maytag Yetkili Servisi", description: "Maytag standartlarını dijitale taşıyan, CRM otomasyonlu, gelişmiş backend mimarisi.", image: "https://d2xsxph8kpxj0f.cloudfront.net/310519663248831776/F8YdZ57En9QeMJoxbZtWaj/project-showcase-2-A4gLPWgAjrk7E8Yjy3UD3r.webp", tech: ["Next.js", "Python", "MongoDB"], }, { title: "Gaggenau Yetkili Servisi", description: "Gaggenau markasının lüks standartlarına uygun, yüksek güvenlikli backend ve CRM.", image: "https://d2xsxph8kpxj0f.cloudfront.net/310519663248831776/F8YdZ57En9QeMJoxbZtWaj/software-product-1-LgNzAjP3snpsor32dLWUN7.webp", tech: ["Vue.js", "Go", "MySQL"], }, { title: "Profilo Servis", description: "WhatsApp CRM entegreli, SEO uyumlu kurumsal web çözümü.", image: "https://d2xsxph8kpxj0f.cloudfront.net/310519663248831776/F8YdZ57En9QeMJoxbZtWaj/software-product-2-J2gJPu2FpJ56448hTyD2Hb.webp", tech: ["React", "Firebase", "Twilio"], }, ]; const softwareProducts = [ { title: "Yelken360", subtitle: "Tek Yazılım, Tüm İşletme", description: "360 Derece Dijital Yönetim Sistemi - İşletmenizin tüm süreçlerini tek platformda yönetin.", image: "https://d2xsxph8kpxj0f.cloudfront.net/310519663248831776/F8YdZ57En9QeMJoxbZtWaj/software-product-1-LgNzAjP3snpsor32dLWUN7.webp", features: ["CRM", "Muhasebe", "Depo Yönetimi", "Raporlama"], }, { title: "Ulubey Analytics", subtitle: "Veri Analitikleri Platformu", description: "Gerçek zamanlı verilerinizi analiz edin ve akıllı kararlar alın.", image: "https://d2xsxph8kpxj0f.cloudfront.net/310519663248831776/F8YdZ57En9QeMJoxbZtWaj/software-product-2-J2gJPu2FpJ56448hTyD2Hb.webp", features: ["Veri Görselleştirme", "Tahmin Analizi", "Raporlama", "API Entegrasyonu"], }, ]; const stats = [ { value: "13+", label: "Yıl Deneyim" }, { value: "250+", label: "Tamamlanan Proje" }, { value: "35", label: "Uzman Ekip" }, { value: "8", label: "Ödül" }, ]; return (
{/* Navigation */} {/* Hero Section */}

Profesyonel Yazılım, Tasarım, Dijital Reklam

Markanızı ilgiyle büyütüyor, projelerinize değer katıyoruz. 13 yıldır dijitalde fark yaratıyoruz.

{/* Stats */}
{stats.map((stat, i) => (
{stat.value}

{stat.label}

))}
{/* Scroll Indicator */}
{/* Services Section */}

Hizmetlerimiz

Markanızın dijital dönüşümü için kapsamlı çözümler sunuyoruz.

{/* Services Grid */}
{services.map((service, i) => { const Icon = service.icon; return (
setActiveService(i)} style={{ animation: `fadeInUp 0.6s ease-out ${0.2 + i * 0.1}s forwards`, opacity: 0 }} >

{service.title}

{service.description}

Daha Fazla Bilgi
); })}
{/* Software Products Section */}

Yazılım Ürünlerimiz

İşletmenizi dijitalleştirmek için geliştirdiğimiz modern yazılım çözümleri.

{softwareProducts.map((product, i) => (
{product.title}

{product.title}

{product.subtitle}

{product.description}

{product.features.map((feature, j) => ( {feature} ))}
))}
{/* Projects Section */}

Referans Projelerimiz

Dünyanın en prestijli markalarıyla çalıştığımız projelere göz atın.

{projects.map((project, i) => (
{project.title}

{project.title}

{project.description}

{project.tech.map((tech, j) => ( {tech} ))}
))}
{/* Contact Section */}
{/* Contact Form */}

İletişim