Skip to content

Commit 77f81d7

Browse files
committed
feat(about): update personal bio, favorite shows, and refine highlight colors for better contrast
1 parent 4805a80 commit 77f81d7

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

src/components/About.tsx

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,13 @@ const AccordionForExtraInfo = (items: CustomAccordionItemDetails[] = []) => {
6060

6161
const About = () => {
6262
const findMeDoingBody = [
63+
<>tinkering on projects that make my life a little easier.</>,
6364
<>
6465
<StrikeHighlight text="re-watching" color="pink" /> any one of these series:{' '}
65-
<StrikeHighlight text="Breaking Bad" color="pink" />,{' '}
66+
<StrikeHighlight text="Better Call Saul" color="pink" />,{' '}
6667
<StrikeHighlight text="Silicon Valley" color="pink" />,{' '}
6768
<StrikeHighlight text="South Park" color="pink" /> and{' '}
68-
<StrikeHighlight text="The Office" color="pink" />.
69+
<StrikeHighlight text="House" color="pink" />.
6970
</>,
7071
];
7172
const thoseOfYouCuriousBody = [
@@ -143,14 +144,14 @@ const About = () => {
143144
<div className="text-gray-700 dark:text-gray-300">
144145
<p className="mb-2">
145146
I am a <StrikeHighlight text="software developer" color="red" /> based in{' '}
146-
<StrikeHighlight text="Toronto" color="red" /> and currently a{' '}
147-
<StrikeHighlight text="junior" /> pursuing a{' '}
148-
<StrikeHighlight text="Computational Mathematics" /> major at the{' '}
149-
<StrikeHighlight text="University of Waterloo" />. I am passionate about tech and
150-
innovation, always exploring the{' '}
151-
<span className="underline underline-offset-4">
152-
intersection of software development and AI.
153-
</span>
147+
<StrikeHighlight text="Waterloo" color="red" /> and currently a{' '}
148+
<StrikeHighlight text="junior" /> majoring in{' '}
149+
<StrikeHighlight text="Computational Mathematics" /> at the{' '}
150+
<StrikeHighlight text="University of Waterloo" />. I am passionate about technology and
151+
innovation, especially exploring{' '}
152+
<span className="underline underline-offset-4">unexplored or complex domains</span> and
153+
uncovering their{' '}
154+
<span className="underline underline-offset-4">intersection with tech</span>.
154155
</p>
155156
<div className="mb-2">{AccordionForExtraInfo(itemsForExtraInfo)}</div>
156157
</div>

src/components/ui/StrikeHighlighter.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ interface StrikeHighlightProps {
2323
*/
2424
export default function StrikeHighlight({ text, color = 'yellow' }: StrikeHighlightProps) {
2525
const colors: Record<string, string> = {
26-
cyan: 'bg-cyan-200 dark:bg-cyan-500/45',
27-
pink: 'bg-[#ffa7ee] dark:bg-[#f73ed2]/50',
28-
'slate-blue': 'bg-[#a0a8ff] dark:bg-[#675bf9]/50',
29-
red: 'bg-[#ffa0a0] dark:bg-[#f83b3b]/45',
30-
yellow: 'bg-[#ffff77] dark:bg-[#fce913]/35',
26+
cyan: 'bg-cyan-200/80 dark:bg-cyan-500/35',
27+
pink: 'bg-[#ffa7ee]/80 dark:bg-[#f73ed2]/35',
28+
'slate-blue': 'bg-[#a0a8ff] dark:bg-[#675bf9]/40',
29+
red: 'bg-[#ffa0a0]/75 dark:bg-[#f83b3b]/40',
30+
yellow: 'bg-[#ffff77]/75 dark:bg-[#fce913]/40',
3131
};
3232

3333
if (color === 'violet-web') {

0 commit comments

Comments
 (0)