diff --git a/company/src/locales/team.ts b/company/src/locales/team.ts deleted file mode 100644 index c0859153..00000000 --- a/company/src/locales/team.ts +++ /dev/null @@ -1,26 +0,0 @@ -export const team = { - en: [ - { - name: "Özlem ÖZTÜRK", - title: "Founder", - imageUrl: "/img/women.png" - }, - { - name: "Burak KATAR", - title: "Tech Director", - imageUrl: "/img/women.png" - } - ], - tr: [ - { - name: "Özlem ÖZTÜRK", - title: "Kurucu", - imageUrl: "/img/women.png" - }, - { - name: "Burak KATAR", - title: "Teknoloji Direktörü", - imageUrl: "/img/women.png" - } - ] -}; diff --git a/company/src/locales/testimonials.ts b/company/src/locales/testimonials.ts deleted file mode 100644 index 69c4994c..00000000 --- a/company/src/locales/testimonials.ts +++ /dev/null @@ -1,106 +0,0 @@ -export const testimonials = { - en: [ - { - quote: "Outstanding service and results. Highly recommended!", - author: "John Doe", - title: "CEO, Example Corp" - }, - { - quote: "Exceeded our expectations in every way.", - author: "Jane Smith", - title: "Director, Tech Solutions" - }, - { - quote: "A game-changer for our business operations.", - author: "Mike Johnson", - title: "Founder, Innovation Labs" - }, - { - quote: "The team was incredibly responsive and helpful.", - author: "Emily White", - title: "Marketing Manager, Global Corp" - }, - { - quote: "We saw a significant increase in efficiency after implementing their solutions.", - author: "David Brown", - title: "Operations Manager, Tech Forward" - }, - { - quote: "Their expertise and dedication are unmatched.", - author: "Sarah Green", - title: "Head of Product, Innovatech" - }, - { - quote: "Incredible support and a fantastic product.", - author: "Kevin Black", - title: "Sales Director, LeadGen Inc." - }, - { - quote: "Transformed our business with their innovative approach.", - author: "Linda Gray", - title: "Business Owner, Creative Solutions" - }, - { - quote: "Exceptional service and a pleasure to work with.", - author: "Brian Blue", - title: "Project Lead, FutureTech" - }, - { - quote: "Highly professional and delivered on every promise.", - author: "Jessica Red", - title: "Customer Success Manager, Prime Corp" - } - ], - tr: [ - { - quote: "Üstün hizmet ve sonuçlar. Şiddetle tavsiye edilir!", - author: "John Doe", - title: "CEO, Example Corp" - }, - { - quote: "Beklentilerimizi her yönden aştılar.", - author: "Jane Smith", - title: "Direktör, Tech Solutions" - }, - { - quote: "İş operasyonlarımız için ezber bozan bir gelişme.", - author: "Mike Johnson", - title: "Kurucu, Innovation Labs" - }, - { - quote: "Ekip inanılmaz derecede duyarlı ve yardımseverdi.", - author: "Emily White", - title: "Pazarlama Müdürü, Global Corp" - }, - { - quote: "Çözümlerini uyguladıktan sonra verimlilikte önemli bir artış gördük.", - author: "David Brown", - title: "Operasyon Müdürü, Tech Forward" - }, - { - quote: "Uzmanlıkları ve özverileri eşsiz.", - author: "Sarah Green", - title: "Ürün Müdürü, Innovatech" - }, - { - quote: "İnanılmaz destek ve harika bir ürün.", - author: "Kevin Black", - title: "Satış Direktörü, LeadGen Inc." - }, - { - quote: "Yenilikçi yaklaşımlarıyla işimizi dönüştürdüler.", - author: "Linda Gray", - title: "İşletme Sahibi, Creative Solutions" - }, - { - quote: "Olağanüstü hizmet ve çalışması keyifli.", - author: "Brian Blue", - title: "Proje Lideri, FutureTech" - }, - { - quote: "Son derece profesyonel ve verdikleri her sözü tuttular.", - author: "Jessica Red", - title: "Müşteri Başarı Yöneticisi, Prime Corp" - } - ] -}; diff --git a/company/src/pages/About.tsx b/company/src/pages/About.tsx index 2a45640a..6b8525ce 100644 --- a/company/src/pages/About.tsx +++ b/company/src/pages/About.tsx @@ -1,12 +1,9 @@ import React from "react"; import { Users, Award, Clock, Globe2 } from "lucide-react"; import { useLanguage } from "../context/LanguageContext"; -import { team } from "../locales/team"; const About: React.FC = () => { - const { t, language } = useLanguage(); - - const teamData = team[language]; + const { t } = useLanguage(); return (
{member.title}
-