Skip to content

Commit ca0d822

Browse files
committed
Rename prop to suitable
1 parent 34fabb4 commit ca0d822

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

src/app/components/Card.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const lato = Lato({ weight: "400", subsets: ["latin"] });
77

88
type Props = {
99
title: string;
10-
organization: string;
10+
subtitle: string;
1111
duration: string;
1212
detail: React.ReactNode;
1313
className?: string;
@@ -17,7 +17,7 @@ type Props = {
1717

1818
export default React.memo(function Card({
1919
title,
20-
organization,
20+
subtitle,
2121
duration,
2222
detail,
2323
className,
@@ -32,7 +32,7 @@ export default React.memo(function Card({
3232
<h3 className="text-2xl font-semibold">{title}</h3>
3333

3434
<div className="flex justify-between text-sm">
35-
<span className="no-anim">{organization}</span>
35+
<span className="no-anim">{subtitle}</span>
3636
<time>{duration}</time>
3737
</div>
3838

src/app/page/achievements/Achievement.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default function Achievement() {
5151
{[
5252
{
5353
title: "Programming in Java",
54-
organization: "IIT-KGP",
54+
subtitle: "IIT-KGP",
5555
duration: "2023",
5656
detail: `Successfully completed the Java Programming course offered by IIT-KGP through the NPTEL program,
5757
within the prescribed duration. Gained a thorough understanding of core Object-Oriented Programming
@@ -62,7 +62,7 @@ export default function Achievement() {
6262
},
6363
{
6464
title: "Collections in Java",
65-
organization: "Great Learning",
65+
subtitle: "Great Learning",
6666
duration: "2024",
6767
detail: `Gained a comprehensive understanding of the Java Collections Framework, including key concepts such as
6868
List, Set, Map, and their implementations (ArrayList, LinkedList, HashSet, TreeSet, HashMap, etc.).
@@ -73,7 +73,7 @@ export default function Achievement() {
7373
},
7474
{
7575
title: "OOP in Java",
76-
organization: "Great Learning",
76+
subtitle: "Great Learning",
7777
duration: "2024",
7878
detail: `Gained a thorough understanding of core object-oriented programming concepts,
7979
including inheritance, multiple inheritance, polymorphism, encapsulation,
@@ -84,7 +84,7 @@ export default function Achievement() {
8484
},
8585
{
8686
title: "Java (Basics)",
87-
organization: "HackerRank",
87+
subtitle: "HackerRank",
8888
duration: "2024",
8989
detail: `Successfully completed the Java Basics course on HackerRank, developing a strong
9090
foundation in core Java programming concepts. Covered essential topics such as data types,
@@ -95,7 +95,7 @@ export default function Achievement() {
9595
},
9696
{
9797
title: "Software Engineering in Java",
98-
organization: "HackerRank",
98+
subtitle: "HackerRank",
9999
duration: "2024",
100100
detail: `Completed the Software Engineering Intern program on HackerRank, gaining hands-on experience
101101
in problem-solving, coding best practices, and core software development concepts. Developed skills
@@ -106,7 +106,7 @@ export default function Achievement() {
106106
},
107107
{
108108
title: "Solved 300+ questions in Java",
109-
organization: "LeetCode",
109+
subtitle: "LeetCode",
110110
duration: "2024",
111111
detail: `Solved over 300 coding problems on LeetCode, focusing on Easy and Medium difficulty levels,
112112
to strengthen problem-solving skills and algorithmic thinking. Maintained a continuous streak of

src/app/page/education/Education.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ export default function Education() {
2626
const content = [
2727
{
2828
title: "Diploma in Electrical Engineering (Lateral)",
29-
organization: "Rungta College of Engineering & Technology",
29+
subtitle: "Rungta College of Engineering & Technology",
3030
duration: "2017-2019",
3131
detail: `I completed my Diploma in Electrical Engineering from Rungta College of Engineering & Technology, where I gained extensive knowledge during my academic years (2017-2019 Lateral Entry after ITI). I worked on various projects, including an Arduino-based robotic arm capable of picking up and placing objects, and a path-following vehicle designed to reach a predefined destination. Both projects were controllable via an Android device using Bluetooth communication.`,
3232

3333
},
3434
{
3535
title: "Bachelors in Computer Science Engineering (Lateral)",
36-
organization: "Rungta College of Engineering & Technology",
36+
subtitle: "Rungta College of Engineering & Technology",
3737
duration: "2021-2024",
3838
detail: `I completed my Bachelor of Technology in Computer Science Engineering from 2021 to 2024 (3 years due to Lateral Entry). Throughout my academic journey, I gained a solid understanding of how computers work, as well as the wide range of applications and software in the industry. During this time, I was part of a team that developed a social media-like platform for pets, designed to help users arrange playdates. Additionally, I worked on various web-based management software projects. These experiences significantly enhanced my knowledge and skills in web development and software engineering.`,
3939
},

src/app/page/experience/Experience.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default function Experience() {
2626
const content = [
2727
{
2828
title: "Catalog Associate",
29-
organization: "Amazon Development Center",
29+
subtitle: "Amazon Development Center",
3030
duration: "Jan 2025 - Present",
3131
detail: `Currently working at Amazon as a Catalog Associate, specializing in Product Knowledge Classification.
3232
In my role, I have classified thousands of products accurately according to Standard Operating Procedures (SOPs),
@@ -37,7 +37,7 @@ export default function Experience() {
3737
},
3838
{
3939
title: "Web Developer Intern",
40-
organization: "Rungta Infotech Pvt Ltd",
40+
subtitle: "Rungta Infotech Pvt Ltd",
4141
duration: "Feb 2024 - Apr 2024",
4242
detail: `Worked as a Web Development Intern at Rungta Infotech PVT LTD, where I gained hands-on experience in building
4343
and maintaining web applications. Throughout my internship, I learned and worked with key web development technologies

src/app/page/other/Other.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function Other() {
2424
const content = [
2525
{
2626
title: "AEON Custom Kernel",
27-
organization: "Samsung Exynos 7870",
27+
subtitle: "Samsung Exynos 7870",
2828
duration: "2017",
2929
detail: `AEON is a custom Linux kernel designed for Samsung devices with the Exynos 7870 chipset.
3030
It focuses on improving performance, optimizing battery life, and enabling advanced customization.
@@ -33,7 +33,7 @@ export default function Other() {
3333
},
3434
{
3535
title: "Custom ROMs",
36-
organization: "Samsung Exynos 7870",
36+
subtitle: "Samsung Exynos 7870",
3737
duration: "2017",
3838
detail: `Ported custom ROMs to various Samsung devices, including Galaxy J7 Nxt, Neo, J6, and A3.
3939
Collaborated with other developers to port and maintain ROMs for the Exynos 7870 chipset.
@@ -42,7 +42,7 @@ export default function Other() {
4242
},
4343
{
4444
title: "Group Management Bot",
45-
organization: "Telegram",
45+
subtitle: "Telegram",
4646
duration: "2017",
4747
detail: `Maintained a Python-based Telegram bot using the Python Telegram Bot library,
4848
focused on group management and automating tasks like fetching resources from

0 commit comments

Comments
 (0)