Skip to content

Commit bacce3c

Browse files
committed
whatsapp contact
1 parent 522094e commit bacce3c

File tree

3 files changed

+12
-3992
lines changed

3 files changed

+12
-3992
lines changed

components/sections/footer.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { motion } from "framer-motion"
2-
import { Github, Linkedin, Mail, Twitter } from "lucide-react"
2+
import { Github, Linkedin, Mail, Twitter, MessageCircle } from "lucide-react"
33
import { useEffect, useState } from "react"
44

55
export default function Footer() {
@@ -58,6 +58,15 @@ export default function Footer() {
5858
>
5959
<Twitter className="h-5 w-5" />
6060
</a>
61+
<a
62+
href="https://wa.me/919966542463"
63+
target="_blank"
64+
rel="noopener noreferrer"
65+
className="text-foreground/70 hover:text-foreground/100 transition-colors duration-300"
66+
aria-label="Whatsapp"
67+
>
68+
<MessageCircle className="h-5 w-5" />
69+
</a>
6170
<a
6271
href="mailto:williamkeri007@gmail.com"
6372
className="text-foreground/70 hover:text-foreground/100 transition-colors duration-300"

components/sections/intro.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client"
22

33
import { motion } from "framer-motion"
4-
import { Github, Linkedin, Mail, Twitter } from "lucide-react"
4+
import { Github, Linkedin, Mail, Twitter, MessageCircle } from "lucide-react"
55

66
export default function Intro() {
77
return (
@@ -38,6 +38,7 @@ export default function Intro() {
3838
<SocialLink icon={<Github className="h-5 w-5" />} href="https://github.com/codevoid048" label="GitHub" />
3939
<SocialLink icon={<Linkedin className="h-5 w-5" />} href="https://linkedin.com/in/codevoid" label="LinkedIn" />
4040
<SocialLink icon={<Twitter className="h-5 w-5" />} href="https://x.com/code__void" label="Twitter" />
41+
<SocialLink icon={<MessageCircle className="h-5 w-5" />} href="https://wa.me/919966542463" label="Whatsapp" />
4142
<SocialLink icon={<Mail className="h-5 w-5" />} href="#contact" label="Email" />
4243
</motion.div>
4344
</motion.div>

0 commit comments

Comments
 (0)