Company projesinden Team ve fazla olan dosyalar kaldırıldı

This commit is contained in:
Sedat Öztürk 2025-06-22 21:05:59 +03:00
parent 0eaf281dcf
commit f01bcd440c
4 changed files with 1 additions and 162 deletions

View file

@ -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"
}
]
};

View file

@ -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"
}
]
};

View file

@ -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 (
<div className="min-h-screen bg-gray-50">
@ -91,30 +88,6 @@ const About: React.FC = () => {
</div>
</div>
</div>
{/* Team Section */}
<div className="py-16 bg-white">
<div className="container mx-auto px-4">
<h2 className="text-3xl font-bold text-gray-900 text-center mb-12">
{t("about.team")}
</h2>
<div className="flex justify-center gap-8 flex-wrap">
{teamData.map((member, index) => (
<div key={index} className="text-center w-60">
<img
src={member.imageUrl}
alt={member.name}
className="w-32 h-32 rounded-full mx-auto mb-4 object-cover"
/>
<h3 className="text-xl font-semibold text-gray-900">
{member.name}
</h3>
<p className="text-gray-600">{member.title}</p>
</div>
))}
</div>
</div>
</div>
</div>
);
};

View file

@ -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 = () => {
<Hero />
<Features />
<Solutions />
{/* <Testimonials /> */}
<CallToAction />
</div>
);