Skip to content

Commit db27783

Browse files
committed
minor fixes
Signed-off-by: rishichawda <[email protected]>
1 parent ed63f7c commit db27783

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/components/landing/hero.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ import logo from "../../../content/assets/logo/logo.svg";
141141

142142
<div class="space-y-5 font-['Montserrat_Variable'] leading-relaxed">
143143
<p class="text-white/90 text-lg font-light leading-relaxed">
144-
Senior Software Engineer at <span class="font-medium text-white">Progress Chef</span>, crafting
144+
Principal Software Engineer at <span class="font-medium text-white">Progress Chef</span>, crafting
145145
<span class="font-medium text-white">DevSecOps solutions</span> that bridge development and security.
146146
Passionate about building resilient systems and exploring the endless possibilities of code.
147147
</p>

src/pages/about.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,20 +185,20 @@ const yearsExperience = new Date().getFullYear() - firstJobStartDate.getFullYear
185185
{Array.isArray(profile.bio) ? (
186186
<div class="space-y-6">
187187
{profile.bio.map((paragraph, index) => (
188-
<div class={`text-xl sm:text-2xl font-light font-['Montserrat_Variable'] text-gray-800 leading-relaxed ${index === 0 ? 'first-letter:text-6xl first-letter:font-bold first-letter:text-brand-700 first-letter:float-left first-letter:mr-3 first-letter:mt-1 first-letter:leading-none' : ''}`}>
188+
<div class={`text-lg sm:text-xl font-light font-['Montserrat_Variable'] text-gray-800 leading-relaxed ${index === 0 ? 'first-letter:text-6xl first-letter:font-bold first-letter:text-brand-700 first-letter:float-left first-letter:mr-3 first-letter:mt-1 first-letter:leading-none' : ''}`}>
189189
{paragraph}
190190
</div>
191191
))}
192192
</div>
193193
) : (
194-
<div class="text-xl sm:text-2xl font-light font-['Montserrat_Variable'] text-gray-800 leading-relaxed mb-8 first-letter:text-6xl first-letter:font-bold first-letter:text-brand-700 first-letter:float-left first-letter:mr-3 first-letter:mt-1 first-letter:leading-none">
194+
<div class="text-lg sm:text-xl font-light font-['Montserrat_Variable'] text-gray-800 leading-relaxed mb-8 first-letter:text-6xl first-letter:font-bold first-letter:text-brand-700 first-letter:float-left first-letter:mr-3 first-letter:mt-1 first-letter:leading-none">
195195
{profile.bio}
196196
</div>
197197
)}
198198

199-
<div class="space-y-6 text-lg font-light font-['Montserrat_Variable'] text-gray-700 leading-relaxed">
199+
<div class="space-y-6 text-lg sm:text-xl font-light font-['Montserrat_Variable'] text-gray-800 leading-relaxed">
200200
<p>
201-
With over <strong class="font-medium text-brand-800">{pluralize(yearsExperience, 'year', 'years')}</strong> of experience in the tech industry, I've had the privilege of working on diverse projects, from developing scalable web applications to contributing to DevSecOps tooling at <a href={profile.experience[0]?.website?.[0] || '#'} target="_blank" rel="noopener noreferrer" class="text-brand-700 hover:text-brand-900 underline decoration-brand-300 hover:decoration-brand-500 decoration-1 underline-offset-2 transition-all duration-300 font-medium">{profile.experience[0]?.company || 'my current role'}</a>.
201+
With over <strong class="font-medium text-brand-800">{pluralize(yearsExperience, 'year', 'years')}</strong> of experience in the tech industry, <em>and a couple more as a freelancer</em>, I've had the privilege of working on diverse projects, from developing scalable web applications to contributing to DevSecOps tooling at <a href={profile.experience[0]?.website?.[0] || '#'} target="_blank" rel="noopener noreferrer" class="text-brand-700 hover:text-brand-900 underline decoration-brand-300 hover:decoration-brand-500 decoration-1 underline-offset-2 transition-all duration-300 font-medium">{profile.experience[0]?.company || 'my current role'}</a>.
202202
</p>
203203

204204
<p>

0 commit comments

Comments
 (0)