Skip to content

Commit 1a861e9

Browse files
committed
fix: update about and header section
1 parent fd2868c commit 1a861e9

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

src/components/About.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ const About = () => {
1515
<BlurFade delay={BLUR_FADE_DELAY * 4}>
1616
<div className="text-gray-700 dark:text-gray-300">
1717
<p className="mb-2">
18-
I am a <Highlight text="junior"/> at the <Highlight text="University of Waterloo"/>, pursuing a major in <Highlight text="Computational Mathematics"/>.
19-
With a <Highlight text="passion for technology and innovation"/>, I am constantly exploring new
20-
areas in <Highlight text="software development"/> and <Highlight text="artificial intelligence"/>.
21-
I am eager to work in areas that leverage the combined potential of <Highlight text="machine learning"/> and
22-
software development, regardless of traditional boundaries.
18+
I am a <Highlight text="software developer" color="red"/> based in <Highlight text="Toronto" color="red"/> and currently a <Highlight text="junior" /> pursuing a
19+
<Highlight text="Computational Mathematics" /> major at the <Highlight text="University of Waterloo" />.
20+
I am passionate about tech and innovation, always exploring the <span className="underline underline-offset-4">
21+
intersection of software
22+
development and AI.
23+
</span>
2324
</p>
2425
{/* <p className="mb-2">
2526
Outside of academics and professional career, I enjoy contributing to open-source projects, working on side projects, participating in hackathons and playing
@@ -37,7 +38,8 @@ const About = () => {
3738
<Highlight text="Impractical Jokers" color="pink"/>.
3839
</div> */}
3940
<p className="mb-2">
40-
You can find me <Highlight text="re-watching" color="pink"/> any one of these TV series:&nbsp;
41+
You can find me <Highlight text="re-watching" color="pink"/> any one of these series:&nbsp;
42+
<Highlight text="Breaking Bad" color="pink"/>,&nbsp;
4143
<Highlight text="Silicon Valley" color="pink"/>,&nbsp;
4244
<Highlight text="South Park" color="pink"/> and <Highlight text="The Office" color="pink"/>.
4345
</p>

src/components/Header.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ export type HeaderProps = {
1111
name: string,
1212
pronouns: string,
1313
currentEducation: string,
14-
currentJob?: string,
14+
currentJob?: string[],
15+
basedFrom?: string,
1516
githubLink: string,
1617
linkedinLink: string,
1718
email: string,
1819
resumeFile: string,
1920
}
2021

21-
const Header = ({name, pronouns, currentEducation, currentJob, githubLink, linkedinLink, email, resumeFile}: HeaderProps) => {
22+
const Header = ({name, pronouns, currentEducation, currentJob, basedFrom, githubLink, linkedinLink, email, resumeFile}: HeaderProps) => {
2223
const isDesktop = useMediaQuery('(min-width: 768px)')
2324
const [copied, setCopiedId] = useState<string>();
2425
useEffect(() => { setTimeout(() => { setCopiedId(undefined); }, 3000) }, [copied]);
@@ -81,10 +82,7 @@ const Header = ({name, pronouns, currentEducation, currentJob, githubLink, linke
8182
</div>
8283
<div className="mt-4 text-sm md:text-base lg:text-lg">
8384
{pronouns && (<BlurFade delay={BLUR_FADE_DELAY}>
84-
<p>{pronouns}</p>
85-
</BlurFade>)}
86-
{currentJob && (<BlurFade delay={BLUR_FADE_DELAY}>
87-
<p>{currentJob}</p>
85+
<p className="italic text-xs md:text-sm lg:text-base">{pronouns}</p>
8886
</BlurFade>)}
8987
{currentEducation && (<BlurFade delay={BLUR_FADE_DELAY}>
9088
<p>{currentEducation}</p>

src/data/resume.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ export const detailsForMetadata = {
99
export const personalDetails = {
1010
name: "Himank Dave",
1111
pronouns: "he/him/his",
12-
currentEducation: "3A Computational Mathematics @ UWaterloo",
12+
currentEducation: "Computational Mathematics @ University of Waterloo",
13+
currentJob: ["Software Developer in Test Intern", "Geotab"],
14+
basedFrom: "Toronto",
1315
githubLink: "https://github.com/steadyfall",
1416
linkedinLink: "https://www.linkedin.com/in/himank-dave/",
1517

0 commit comments

Comments
 (0)