From f01bcd440c91ca29e54bb4dcbd00e610689250c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sedat=20=C3=96zt=C3=BCrk?= Date: Sun, 22 Jun 2025 21:05:59 +0300 Subject: [PATCH] =?UTF-8?q?Company=20projesinden=20Team=20ve=20fazla=20ola?= =?UTF-8?q?n=20dosyalar=20kald=C4=B1r=C4=B1ld=C4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- company/src/locales/team.ts | 26 ------- company/src/locales/testimonials.ts | 106 ---------------------------- company/src/pages/About.tsx | 29 +------- company/src/pages/Home.tsx | 2 - 4 files changed, 1 insertion(+), 162 deletions(-) delete mode 100644 company/src/locales/team.ts delete mode 100644 company/src/locales/testimonials.ts 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 (
@@ -91,30 +88,6 @@ const About: React.FC = () => {
- - {/* Team Section */} -
-
-

- {t("about.team")} -

-
- {teamData.map((member, index) => ( -
- {member.name} -

- {member.name} -

-

{member.title}

-
- ))} -
-
-
); }; diff --git a/company/src/pages/Home.tsx b/company/src/pages/Home.tsx index 3a80b68c..4a32223b 100644 --- a/company/src/pages/Home.tsx +++ b/company/src/pages/Home.tsx @@ -2,7 +2,6 @@ import React from "react"; import Hero from "../components/home/Hero"; import Features from "../components/home/Features"; import Solutions from "../components/home/Solutions"; -// import Testimonials from "../components/home/Testimonials"; import CallToAction from "../components/home/CallToAction"; const Home: React.FC = () => { @@ -11,7 +10,6 @@ const Home: React.FC = () => { - {/* */} );