Skip to content

Commit bc799a9

Browse files
Remove Experience section from translations and components; update Menu to reflect changes by replacing Experience with Skills.
1 parent 4c393db commit bc799a9

6 files changed

Lines changed: 3 additions & 508 deletions

File tree

public/locales/en/translation.json

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"menu": {
44
"home": "Home",
55
"about": "About",
6-
"experience": "Experience",
76
"education": "Education",
87
"certifications": "Certifications",
98
"skills": "Skills",
@@ -25,50 +24,6 @@
2524
"label": "Download Professional Profile"
2625
}
2726
},
28-
"experience": {
29-
"title": "Professional Journey",
30-
"subtitle": "Bridging development expertise with security-first approach",
31-
"skillCategories": {
32-
"development": "Development Expertise",
33-
"security": "Security Specialization",
34-
"tools": "Tools & Platforms"
35-
},
36-
"items": [
37-
{
38-
"id": 1,
39-
"role": "Front-End Developer & Cybersecurity Specialist",
40-
"type": "Self-Initiated Projects",
41-
"period": "March - April 2025",
42-
"description": "Combining web development expertise with cybersecurity research to create secure and modern web solutions",
43-
"skills": {
44-
"development": [
45-
"React Architecture",
46-
"Tailwind CSS",
47-
"Responsive Design",
48-
"Web Performance",
49-
"REST APIs",
50-
"Webpack"
51-
],
52-
"cybersecurity": [
53-
"Penetration Testing",
54-
"Threat Analysis",
55-
"OWASP Top 10",
56-
"Network Security",
57-
"Cryptography",
58-
"SIEM Tools"
59-
],
60-
"tools": [
61-
"Kali Linux",
62-
"Burp Suite",
63-
"Wireshark",
64-
"Metasploit",
65-
"Nmap",
66-
"Docker"
67-
]
68-
}
69-
}
70-
]
71-
},
7227
"education": {
7328
"title": "Academic Journey",
7429
"subtitle": "Formal education and academic achievements shaping my professional foundation",

public/locales/fa/translation.json

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"menu": {
44
"home": "خانه",
55
"about": "درباره من",
6-
"experience": "تجربیات",
76
"education": "تحصیلات",
87
"certifications": "گواهینامه‌ها",
98
"skills": "مهارت‌ها",
@@ -25,50 +24,6 @@
2524
"label": "دانلود پروفایل حرفه‌ای"
2625
}
2726
},
28-
"experience": {
29-
"title": "مسیر حرفه‌ای",
30-
"subtitle": "پیوند دادن تخصص توسعه با رویکرد امنیت-محور",
31-
"skillCategories": {
32-
"development": "تخصص توسعه",
33-
"security": "تخصص امنیتی",
34-
"tools": "ابزارها و پلتفرم‌ها"
35-
},
36-
"items": [
37-
{
38-
"id": 1,
39-
"role": "توسعه‌دهنده فرانت‌اند و متخصص امنیت سایبری",
40-
"type": "پروژه‌های خود-محور",
41-
"period": "مارس - آوریل ۲۰۲۵",
42-
"description": "ترکیب تخصص توسعه وب با تحقیقات امنیت سایبری برای ایجاد راه‌حل‌های وب امن و مدرن",
43-
"skills": {
44-
"development": [
45-
"معماری ری‌اکت",
46-
"تیلویند CSS",
47-
"طراحی واکنش‌گرا",
48-
"عملکرد وب",
49-
"REST APIs",
50-
"وب‌پک"
51-
],
52-
"cybersecurity": [
53-
"تست نفوذ",
54-
"تحلیل تهدید",
55-
"OWASP Top 10",
56-
"امنیت شبکه",
57-
"رمزنگاری",
58-
"ابزارهای SIEM"
59-
],
60-
"tools": [
61-
"کالی لینوکس",
62-
"Burp Suite",
63-
"وایرشارک",
64-
"متاسپلویت",
65-
"Nmap",
66-
"داکر"
67-
]
68-
}
69-
}
70-
]
71-
},
7227
"education": {
7328
"title": "سفر تحصیلی",
7429
"subtitle": "تحصیلات رسمی و دستاوردهای علمی که پایه حرفه‌ای من را شکل می‌دهند",

src/App.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import Menu from "./Components/Menu/Menu.jsx";
1111
import Banner from "./Components/banner/Banner.jsx";
1212
import About from "./Components/About/About.jsx";
1313
import Education from "./Components/Education/Education.jsx";
14-
import Experience from "./Components/Experience/Experience.jsx";
1514
import Certifications from "./Components/certifica/Certifications.jsx";
1615
import Skills from "./Components/Skill/Skill.jsx";
1716
import Portfolio from "./Components/portfolio/Portfolio.jsx";
@@ -52,10 +51,9 @@ function AppContent() {
5251
<Menu/>
5352
<Banner/>
5453
<About/>
55-
<Experience/>
54+
<Skills/>
5655
<Education/>
5756
<Certifications/>
58-
<Skills/>
5957
<Portfolio/>
6058
<Services/>
6159
<Footer/>

0 commit comments

Comments
 (0)