Skip to content

Commit 013f493

Browse files
authored
Added social links below footer contact section
1 parent d85fa23 commit 013f493

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

app/page.js

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { useEffect } from "react"
33
import Head from "next/head"
44
import Contect from "./_components/Contect"
5-
import { FaGithub } from "react-icons/fa"
5+
import { FaGithub, FaLinkedin, FaTwitter, FaInstagram } from 'react-icons/fa';
66
import { ModeToggle } from "@/components/ModeToggle"
77
import { ArrowDown, ArrowRight, CheckCircle, Code, Cpu, MessageSquare, Sparkles, Star, Users } from "lucide-react"
88

@@ -387,6 +387,30 @@ const page = () => {
387387
>
388388
<FaGithub className="w-6 h-6" />
389389
</a>
390+
<a
391+
href="https://www.linkedin.com/in/soumilm30/"
392+
target="_blank"
393+
rel="noopener noreferrer"
394+
className="text-white/80 hover:text-white transition-colors"
395+
>
396+
<FaLinkedin className="w-6 h-6" />
397+
</a>
398+
<a
399+
href="https://www.instagram.com/soumil_m.exe/"
400+
target="_blank"
401+
rel="noopener noreferrer"
402+
className="text-white/80 hover:text-white transition-colors"
403+
>
404+
<FaInstagram className="w-6 h-6" />
405+
</a>
406+
<a
407+
href="https://twitter.com/SoumilMukh6476/"
408+
target="_blank"
409+
rel="noopener noreferrer"
410+
className="text-white/80 hover:text-white transition-colors"
411+
>
412+
<FaTwitter className="w-6 h-6" />
413+
</a>
390414
</div>
391415
</div>
392416
</div>

0 commit comments

Comments
 (0)