Skip to content

Commit c18f8db

Browse files
committed
updates
1 parent 38ed5ee commit c18f8db

File tree

7 files changed

+59
-42
lines changed

7 files changed

+59
-42
lines changed

app/Components/Main/Pages/ProjectCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function ProjectCard({ item }: Props) {
1717
{item.project.map((itm: any) => {
1818
return (
1919
<div
20-
className='col-span-12 md:col-span-6 lg:col-span-4 xl:col-span-3 rounded-t-xl'
20+
className='col-span-12 md:col-span-6 lg:col-span-3 xl:col-span-3 rounded-t-xl'
2121
key={itm.id}
2222
>
2323
<Image

app/Components/Main/Pages/WorkHistory.tsx

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function WorkHistory({}: Props) {
1414
const { theme } = useTheme();
1515
return (
1616
<div
17-
className={`flex-1 flex flex-col items-start md:gap-5 w-full h-[calc(100vh-108px)] overflow-y-auto ${
17+
className={`flex-1 flex flex-col items-start md:gap-5 w-full h-[calc(100vh-68px)] overflow-y-auto ${
1818
theme === "dark" ? "bg-dark4" : "bg-light2"
1919
}`}
2020
>
@@ -36,25 +36,28 @@ function WorkHistory({}: Props) {
3636
<div>
3737
<p>{t(item.description)}</p>
3838
</div>
39-
<div className='mt-2 flex flex-col'>
40-
<p className='mr-1 mb-2'>{t("text.technologies")}: </p>
41-
<div className='flex flex-wrap'>
42-
{item.technologies.map((i) => {
43-
return (
44-
<p
45-
key={i}
46-
className={`px-3 py-1 rounded border mr-1 mt-1 cursor-pointer select-none ${
47-
theme === "dark"
48-
? "hover:bg-slate-400 hover:text-white border-slate-500"
49-
: "hover:bg-slate-400 hover:text-white border-slate-500"
50-
} `}
51-
>
52-
{i}
53-
</p>
54-
);
55-
})}
39+
{item.technologies.length > 0 && (
40+
<div className='mt-2 flex flex-col'>
41+
<p className='mr-1 mb-2'>{t("text.technologies")}: </p>
42+
<div className='flex flex-wrap'>
43+
{item.technologies.map((i) => {
44+
return (
45+
<p
46+
key={i}
47+
className={`px-3 py-1 rounded border mr-1 mt-1 cursor-pointer select-none ${
48+
theme === "dark"
49+
? "hover:bg-slate-400 hover:text-white border-slate-500"
50+
: "hover:bg-slate-400 hover:text-white border-slate-500"
51+
} `}
52+
>
53+
{i}
54+
</p>
55+
);
56+
})}
57+
</div>
5658
</div>
57-
</div>
59+
)}
60+
5861
{item.project.length > 0 && <ProjectCard item={item} />}
5962
</div>
6063
);

app/Configs/config.tsx

Lines changed: 32 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -160,26 +160,6 @@ const Config = {
160160
workHistories: [
161161
{
162162
id: 1,
163-
job: "FrontEnd Developer (Intern)",
164-
company: "ETurnsoft",
165-
url: "https://www.linkedin.com/company/eturnsoft/about/",
166-
companyLocation: "Türkiye / İstanbul",
167-
workStart: "2021",
168-
workEnd: "2022",
169-
description: "description1",
170-
technologies: [
171-
"Javascript",
172-
"HTML",
173-
"CSS",
174-
"ReactJs",
175-
"NodeJs",
176-
"MongoDB",
177-
"Bootstrap",
178-
],
179-
project: [],
180-
},
181-
{
182-
id: 2,
183163
job: "FrontEnd Developer",
184164
company: "Codelisa Teknoloji",
185165
url: "https://www.codelisa.com.tr/",
@@ -252,6 +232,38 @@ const Config = {
252232
},
253233
],
254234
},
235+
{
236+
id: 2,
237+
job: "FrontEnd Developer (Intern)",
238+
company: "ETurnsoft",
239+
url: "https://www.linkedin.com/company/eturnsoft/about/",
240+
companyLocation: "Türkiye / İstanbul",
241+
workStart: "2021",
242+
workEnd: "2022",
243+
description: "description1",
244+
technologies: [
245+
"Javascript",
246+
"HTML",
247+
"CSS",
248+
"ReactJs",
249+
"NodeJs",
250+
"MongoDB",
251+
"Bootstrap",
252+
],
253+
project: [],
254+
},
255+
{
256+
id: 2,
257+
job: "E-Commerce",
258+
company: "Sincap Dükkan",
259+
url: "/",
260+
companyLocation: "Türkiye / İstanbul",
261+
workStart: "2018",
262+
workEnd: "2021",
263+
description: "description3",
264+
technologies: [],
265+
project: [],
266+
},
255267
],
256268
portfolio: [
257269
{

public/files/cv-en.pdf

8.61 KB
Binary file not shown.

public/files/cv.pdf

3.37 KB
Binary file not shown.

public/locales/en/works.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"text.technologies": "Used technologies",
33
"text.projects": "Projects",
44
"description1": "I worked on user management systems with the administration panel.",
5-
"description2": "I worked on customer-focused, modular websites and mobile applications."
5+
"description2": "I worked on customer-focused, modular websites and mobile applications.",
6+
"description3": "I have a strong background in e-commerce, with hands-on experience selling on leading Turkish platforms such as Trendyol and Hepsiburada, gaining valuable skills in marketing and customer relations. Additionally, I managed my own e-commerce site using the OpenCart infrastructure, where I took responsibility for product management, order processes, inventory tracking, and customer satisfaction. This role provided me with a comprehensive understanding of end-to-end e-commerce operations."
67
}

public/locales/tr/works.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"text.technologies": "Kullanılan Teknolojiler",
33
"text.projects": "Projeler",
44
"description1": "Yönetim paneli ile kullanıcı yönetim sistemleri üzerine çalıştım.",
5-
"description2": "Müşteri odaklı, modüler web siteleri ve mobil uygulamalar üzerinde çalıştım."
5+
"description2": "Müşteri odaklı, modüler web siteleri ve mobil uygulamalar üzerinde çalıştım.",
6+
"description3": "E-ticaret alanında güçlü bir geçmişe sahibim ve Trendyol, Hepsiburada gibi Türkiye’nin önde gelen e-ticaret platformlarında satış yaparak pazarlama ve müşteri ilişkileri konusunda değerli deneyimler kazandım. Aynı zamanda, OpenCart altyapısını kullanarak kendi e-ticaret sitemi yönetme sorumluluğunu üstlendim. Bu süreçte, ürün yönetimi, sipariş süreçleri, stok takibi ve müşteri memnuniyeti gibi konularda kapsamlı bilgi edinme fırsatım oldu."
67
}

0 commit comments

Comments
 (0)