Skip to content

Commit c07d319

Browse files
Till now all ok for going to production
1 parent ed15b6b commit c07d319

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

src/components/ProjectCard.tsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,24 @@ const ProjectCard: React.FC<ProjectCardProps> = ({
9191
className="w-full h-48 object-cover transform transition-transform duration-500 ease-in-out group-hover:scale-110"
9292
/>
9393
<div className="absolute inset-0 bg-black/10 group-hover:bg-black/20 transition-all duration-300" />
94+
95+
{/* Type Tag */}
96+
<motion.div
97+
initial={{ opacity: 1, scale: 1 }}
98+
whileHover={{ opacity: 1, scale: 1.05 }}
99+
transition={{ duration: 0.3 }}
100+
className={`absolute top-2 left-2 px-2 py-1 text-xs font-semibold text-white rounded-md shadow-md z-10 ${
101+
type === 'Competition' ? 'bg-blue-500/80' :
102+
type === 'Project' ? 'bg-green-500/80' :
103+
type === 'Fest Website' ? 'bg-purple-500/80' :
104+
type === 'Portfolio Website' ? 'bg-orange-500/80' :
105+
type === 'Research Paper' ? 'bg-red-500/80' :
106+
type === 'Conference' ? 'bg-yellow-500/80' :
107+
'bg-gray-500/80'
108+
}`}
109+
>
110+
{type}
111+
</motion.div>
94112
</div>
95113

96114
{/* Content Container */}

src/pages/Home.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,13 @@ const Home: React.FC = () => {
169169
<img src={iitkgplogo} alt="IIT KGP" className="w-6 h-6" />
170170
<p className="text-1xl text-gray-750">IIT Kharagpur | Applied ML & AI Researcher</p>
171171
</div>
172-
<h2 className="text-1xl md:text-1xl text-gray-800 font-semibold mb-2">
172+
<h2 className="text-xl md:text-xl text-blue-800 font-semibold mb-2">
173173
<AniText
174174
texts={[
175175
"Data Science & Applied ML Researcher",
176-
"Machine Learning & Optimization Specialist",
176+
"Machine Learning Enthusiast",
177177
"AI-Driven Solutions enthusiast",
178-
"Hackathon & Competition Champion",
178+
"Hackathon & Competition Finalist",
179179
"Quantitative Finance Enthusiast",
180180
"Deep Learning Enthusiast",
181181
]}

src/pages/aboutme.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ const AboutMe: React.FC = () => {
5656
<div className="mb-10 text-center">
5757
<h2 className="text-3xl font-extrabold text-gray-900 tracking-tight">
5858
<span className="bg-gradient-to-r from-indigo-500 to-blue-500 bg-clip-text text-transparent">
59-
About Me
59+
Know More About Me
6060
</span>
6161
</h2>
6262
<p className="mt-4 text-gray-600 text-lg max-w-2xl mx-auto">
63-
Discover who I am, what drives me, and how I work with intelligent systems.
63+
Discover who I am, what drives me, and how I work with Machine Learning and data.
6464
</p>
6565
</div>
6666

@@ -113,7 +113,7 @@ const AboutMe: React.FC = () => {
113113
<h1 className="text-3xl md:text-4xl font-bold text-gray-900 tracking-tight">
114114
Arpit Kumar
115115
</h1>
116-
<p className="mt-2 text-lg font-medium text-indigo-600 tracking-tight">
116+
<h2 className="mt-4 text-xl font-semibold text-indigo-600 tracking-tight">
117117
<AniText
118118
texts={[
119119
"Data Science & Applied ML Researcher",
@@ -126,7 +126,7 @@ const AboutMe: React.FC = () => {
126126
typingSpeed={50}
127127
pauseTime={1500}
128128
/>
129-
</p>
129+
</h2>
130130
</div>
131131

132132
<div className="space-y-4 text-base text-slate-600 text-left max-w-prose">

0 commit comments

Comments
 (0)