Skip to content

Commit ffc6e8c

Browse files
committed
fix: change all hyperlinks to coloured description with arrows
1 parent 2d6cdde commit ffc6e8c

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

src/components/About.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ const About = () => {
2121
South Park,
2222
Impractical Jokers.
2323
<br></br>
24-
For those of you curious, the favicon is a 4-hypercube graph. Check the <a href="/icon.ico" target="_blank" className="inline-flex items-center hover:underline">
24+
For those of you curious, the favicon is a 4-hypercube graph. Check the <a href="/icon.ico" target="_blank" className="inline-flex items-center hover:underline text-orange-500">
2525
image <ArrowUpRight className="w-4 h-4 md:w-5 md:h-5"/>
26-
</a> out and learn <a href="https://en.wikipedia.org/wiki/Hypercube_graph" target="_blank" className="inline-flex items-center hover:underline">
26+
</a> out and learn <a href="https://en.wikipedia.org/wiki/Hypercube_graph" target="_blank" className="inline-flex items-center hover:underline text-blue-violet-500">
2727
more <ArrowUpRight className="w-4 h-4 md:w-5 md:h-5"/>
2828
</a>.
2929
</p>

src/components/Header.tsx

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Github, Linkedin, Mail, StickyNote } from 'lucide-react'
1+
import { ArrowUpRight } from 'lucide-react'
22
import ThemeSwitch from './ThemeSwitch'
33
import Image from 'next/image'
44

@@ -22,18 +22,26 @@ const Header = () => {
2222
<h1 className="text-3xl md:text-4xl lg:text-5xl font-bold mr-4">Himank Dave</h1>
2323
<ThemeSwitch />
2424
</div>
25-
<div className="flex justify-center md:justify-start mt-4 space-x-4 font-typewriter">
26-
<a href={githubLink} target="_blank" rel="noopener noreferrer" aria-label="GitHub">
27-
[github]{/* <Github className="w-6 h-6 md:w-7 md:h-7" /> */}
25+
<div className="flex justify-center md:justify-start mt-4 space-x-4">
26+
<a href={githubLink} target="_blank" rel="noopener noreferrer" aria-label="GitHub"
27+
className="inline-flex items-center hover:underline text-pink-500"
28+
>
29+
github <ArrowUpRight className="w-4 h-4 md:w-5 md:h-5"/>
2830
</a>
29-
<a href={linkedinLink} target="_blank" rel="noopener noreferrer" aria-label="LinkedIn">
30-
[linkedin]{/* <Linkedin className="w-6 h-6 md:w-7 md:h-7" /> */}
31+
<a href={linkedinLink} target="_blank" rel="noopener noreferrer" aria-label="LinkedIn"
32+
className="inline-flex items-center hover:underline text-blue-violet-500"
33+
>
34+
linkedin <ArrowUpRight className="w-4 h-4 md:w-5 md:h-5"/>
3135
</a>
32-
<a href="mailto:[email protected]" aria-label="Email">
33-
[email]{/* <Mail className="w-6 h-6 md:w-7 md:h-7" /> */}
36+
<a href="mailto:[email protected]" aria-label="Email"
37+
className="inline-flex items-center hover:underline text-orange-500"
38+
>
39+
email <ArrowUpRight className="w-4 h-4 md:w-5 md:h-5"/>
3440
</a>
35-
<a href="/resume.pdf" target="_blank" aria-label="Resume">
36-
[resume]{/* <StickyNote className="w-6 h-6 md:w-7 md:h-7" /> */}
41+
<a href="/resume.pdf" target="_blank" aria-label="Resume"
42+
className="inline-flex items-center hover:underline text-midnight-blue-500"
43+
>
44+
resume <ArrowUpRight className="w-4 h-4 md:w-5 md:h-5"/>
3745
</a>
3846
</div>
3947
<div className="mt-4 text-sm md:text-base lg:text-lg">

0 commit comments

Comments
 (0)