1
- import BlurFade , { BLUR_FADE_DELAY } from " @/components/ui/BlurFade" ;
2
- import Highlight from " @/components/ui/Highlighter" ;
3
- import { cn } from " @/lib/utils" ;
4
- import LinkWithArrow from " @/components/ui/LinkWithArrow" ;
1
+ import BlurFade , { BLUR_FADE_DELAY } from ' @/components/ui/BlurFade' ;
2
+ import Highlight from ' @/components/ui/Highlighter' ;
3
+ import { cn } from ' @/lib/utils' ;
4
+ import LinkWithArrow from ' @/components/ui/LinkWithArrow' ;
5
5
6
6
const About = ( ) => {
7
7
return (
8
8
< section id = "about" className = "mb-12" >
9
- < BlurFade delay = { BLUR_FADE_DELAY * 3 } >
10
- < h2 className = { cn (
11
- " text-2xl md:text-3xl lg:text-4xl font-section mb-4" ,
12
- " inline-block text-transparent bg-clip-text bg-gradient-to-r dark:from-gray-300 dark:to-gray-100 from-[#434343] to-[#000000]"
13
- ) } > About</ h2 >
14
- </ BlurFade >
15
- < BlurFade delay = { BLUR_FADE_DELAY * 4 } >
16
- < div className = "text-gray-700 dark:text-gray-300" >
17
- < p className = "mb-2" >
9
+ < BlurFade delay = { BLUR_FADE_DELAY * 3 } >
10
+ < h2 className = { cn (
11
+ ' text-2xl md:text-3xl lg:text-4xl font-section mb-4' ,
12
+ ' inline-block text-transparent bg-clip-text bg-gradient-to-r dark:from-gray-300 dark:to-gray-100 from-[#434343] to-[#000000]'
13
+ ) } > About</ h2 >
14
+ </ BlurFade >
15
+ < BlurFade delay = { BLUR_FADE_DELAY * 4 } >
16
+ < div className = "text-gray-700 dark:text-gray-300" >
17
+ < p className = "mb-2" >
18
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
19
< Highlight text = "Computational Mathematics" /> major at the < Highlight text = "University of Waterloo" /> .
20
20
I am passionate about tech and innovation, always exploring the < span className = "underline underline-offset-4" >
21
21
intersection of software
22
22
development and AI.
23
23
</ span >
24
- </ p >
25
- { /* <p className="mb-2">
24
+ </ p >
25
+ { /* <p className="mb-2">
26
26
Outside of academics and professional career, I enjoy contributing to open-source projects, working on side projects, participating in hackathons and playing
27
27
table tennis, football, cricket and badminton. I also like to travel & explore new places, cuisines & restaurants.
28
28
</p> */ }
29
- { /* <div className="inline-flex flex-wrap gap-x-0.5 gap-y-1 mb-2 ">
29
+ { /* <div className="inline-flex flex-wrap gap-x-0.5 gap-y-1 mb-2 ">
30
30
<span>You can find me</span> <Highlight text="re-watching" color="pink"/> <span>any one of these TV series:</span>
31
31
<Highlight text="Silicon Valley" color="pink"/>,
32
32
<Highlight text="South Park" color="pink"/>,
@@ -37,36 +37,36 @@ const About = () => {
37
37
<Highlight text="How I Met Your Mother" color="pink"/>,
38
38
<Highlight text="Impractical Jokers" color="pink"/>.
39
39
</div> */ }
40
- < p className = "mb-2" >
40
+ < p className = "mb-2" >
41
41
You can find me < Highlight text = "re-watching" color = "pink" /> any one of these series:
42
42
< Highlight text = "Breaking Bad" color = "pink" /> ,
43
43
< Highlight text = "Silicon Valley" color = "pink" /> ,
44
44
< Highlight text = "South Park" color = "pink" /> and < Highlight text = "The Office" color = "pink" /> .
45
- </ p >
46
- < p className = "mb-2" >
45
+ </ p >
46
+ < p className = "mb-2" >
47
47
For those of you curious, the favicon is a < Highlight text = "4-hypercube graph" color = "cyan" /> made via Python, using NetworkX and Matplotlib.
48
48
Check the < LinkWithArrow
49
- href = "/icon.ico" target = "_blank"
50
- className = "mr-1 hover:underline hover:underline-offset-2 text-orange-500"
51
- >
49
+ href = "/icon.ico" target = "_blank"
50
+ className = "mr-1 hover:underline hover:underline-offset-2 text-orange-500"
51
+ >
52
52
image
53
- </ LinkWithArrow >
53
+ </ LinkWithArrow >
54
54
out, learn < LinkWithArrow
55
- href = "https://en.wikipedia.org/wiki/Hypercube_graph" target = "_blank"
56
- className = "mr-1 hover:underline hover:underline-offset-2 text-blue-violet-500"
57
- >
55
+ href = "https://en.wikipedia.org/wiki/Hypercube_graph" target = "_blank"
56
+ className = "mr-1 hover:underline hover:underline-offset-2 text-blue-violet-500"
57
+ >
58
58
more
59
- </ LinkWithArrow > about hypercube graphs & here is the < LinkWithArrow
60
- href = "https://github.com/steadyfall/steadyfall.github.io/blob/main/hypercube/generate.py" target = "_blank"
61
- className = "mr-1 hover:underline hover:underline-offset-2 dark:text-firefly-500 text-firefly-600"
62
- >
59
+ </ LinkWithArrow > about hypercube graphs & here is the < LinkWithArrow
60
+ href = "https://github.com/steadyfall/steadyfall.github.io/blob/main/hypercube/generate.py" target = "_blank"
61
+ className = "mr-1 hover:underline hover:underline-offset-2 dark:text-firefly-500 text-firefly-600"
62
+ >
63
63
code
64
- </ LinkWithArrow > to generate it yourself.
65
- </ p >
66
- </ div >
67
- </ BlurFade >
64
+ </ LinkWithArrow > to generate it yourself.
65
+ </ p >
66
+ </ div >
67
+ </ BlurFade >
68
68
</ section >
69
- )
70
- }
69
+ ) ;
70
+ } ;
71
71
72
- export default About
72
+ export default About ;
0 commit comments