Skip to content

Commit 1bd1020

Browse files
committed
fresh bio update
1 parent 4e9e058 commit 1bd1020

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

pages/index.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,10 @@ export default function Home() {
7676
Dev Prakash Sharma
7777
</h1>
7878
<h2 className="text-gray-700 dark:text-gray-200 mb-4">
79-
An Open Source developer with passion to code, write and build stuffs.</h2>
79+
An Open Source developer with passion to <span className="font-mono">code</span>, write and build stuffs.</h2>
8080
<p className="text-gray-600 dark:text-gray-400 mb-16">
81-
Helping Developers and Businesses to ship better software documentation. Contributing to Open Source, Data Science/ML Enthusiast, and building communities.
81+
Helping Developers and Businesses to ship better software documentation. Contributing to Open Source, Data Science/ML Enthusiast, and building communities
82+
<span className="cursor-blink"></span>
8283
</p>
8384
</div>
8485
<div className="w-[80px] sm:w-[176px] relative mb-8 sm:mb-0 mr-auto">
@@ -89,7 +90,9 @@ export default function Home() {
8990
src="/headshot-dev.jpg"
9091
sizes="30vw"
9192
priority
92-
className={`rounded-full ${resolvedTheme === 'dark' ? 'grayscale' : ''}`}
93+
className={`rounded-full filter ${
94+
resolvedTheme === 'light' ? 'grayscale-0' : 'grayscale'
95+
}`}
9396
/>
9497
</div>
9598
</div>

styles/global.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,3 +230,11 @@ table {
230230
.prose .callout > p {
231231
margin: 0 !important;
232232
}
233+
234+
@keyframes blink {
235+
50% { opacity: 0; }
236+
}
237+
238+
.cursor-blink {
239+
animation: blink 1s step-end infinite;
240+
}

0 commit comments

Comments
 (0)