Skip to content

Commit 8cf7c36

Browse files
committed
Links
1 parent 6e8aa35 commit 8cf7c36

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

src/components/Hero.astro

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,24 @@ import {Github, Linkedin, Mail} from "lucide-vue-next"
1313
<div class="flex gap-2 p-auto flex-col md:flex-row">
1414
<button class="main-btn md:mr-4 md:ml-0 h-12 m-auto">Download CV</button>
1515
<div class="flex m-auto md:m-0">
16-
<div class="flex justify-center aspect-square w-16 rounded-full p-1 transition-all duration-300 hover:bg-white/20">
16+
<a href="https://github.com/m1ke-gru"
17+
class="flex justify-center aspect-square w-16 rounded-full p-1 transition-all duration-300 hover:bg-white/20"
18+
target="_blank"
19+
rel="noopener noreferrer">
1720
<Github class="icon-btn" client:load />
18-
</div>
19-
<div class="flex justify-center aspect-square w-16 rounded-full p-1 transition-all duration-300 hover:bg-white/20">
21+
</a>
22+
<a href="https:/www.linkedin.com/in/mykhailo-grushko-450b542b8/"
23+
class="flex justify-center aspect-square w-16 rounded-full p-1 transition-all duration-300 hover:bg-white/20"
24+
target="_blank"
25+
rel="noopener noreferrer">
2026
<Linkedin class="icon-btn" client:load />
21-
</div>
22-
<div class="flex justify-center rounded-full w-16 p-1 aspect-square transition-all duration-300 hover:bg-white/20">
27+
</a>
28+
<a class="flex justify-center rounded-full w-16 p-1 aspect-square transition-all duration-300 hover:bg-white/20"
29+
href="mailto:mike@mgrushko.dev"
30+
target="_blank"
31+
rel="noopener noreferrer">
2332
<Mail class="icon-btn" client:load />
24-
</div>
33+
</a>
2534
</div>
2635
</div>
2736
</div>

0 commit comments

Comments
 (0)