11"use client"
22import React from 'react'
3- import { FaTwitter , FaYoutube , FaInstagram , FaGithub } from "react-icons/fa" ;
3+ import { FaTwitter , FaYoutube , FaInstagram , FaGithub , FaLinkedin } from "react-icons/fa" ;
44
55function Footer ( ) {
66 return (
@@ -29,7 +29,14 @@ function Footer() {
2929 < div >
3030 < h3 className = "text-white font-semibold mb-3" > Project</ h3 >
3131 < ul className = "space-y-2" >
32- < li className = "cursor-pointer hover:text-white transition" > Contribute</ li >
32+ { /* <li className="cursor-pointer hover:text-white transition">Contribute</li> */ }
33+ < a
34+ href = "https://github.com/Sujal-Raj/InSights-Blog-Website" // Replace with your Twitter URL
35+ target = "_blank"
36+ rel = "noopener noreferrer"
37+ >
38+ Contribute
39+ </ a >
3340 < li className = "cursor-pointer hover:text-white transition" > Media assets</ li >
3441 < li className = "cursor-pointer hover:text-white transition" > Changelog</ li >
3542 < li className = "cursor-pointer hover:text-white transition" > Releases</ li >
@@ -47,14 +54,52 @@ function Footer() {
4754 </ div >
4855 </ div >
4956 < div className = "border-t border-gray-700 mt-8 pt-6 flex flex-col md:flex-row justify-between items-center" >
50- < p className = "text-sm" > © 2020 mantine.dev. All rights reserved.</ p >
51- < div className = "flex space-x-5 mt-4 md:mt-0" >
57+ { /* Footer Text */ }
58+ < p className = "text-sm" > © 2020 mantine.dev. All rights reserved.</ p >
59+
60+ { /* Social Media Links */ }
61+ < div className = "flex space-x-5 mt-4 md:mt-0" >
62+ { /* <a
63+ href="https://twitter.com/yourprofile" // Replace with your Twitter URL
64+ target="_blank"
65+ rel="noopener noreferrer"
66+ >
5267 <FaTwitter className="text-gray-400 hover:text-white cursor-pointer" size={22} />
68+ </a> */ }
69+
70+ { /* <a
71+ href="https://www.youtube.com/channel/yourchannel" // Replace with your YouTube URL
72+ target="_blank"
73+ rel="noopener noreferrer"
74+ >
5375 <FaYoutube className="text-gray-400 hover:text-white cursor-pointer" size={22} />
76+ </a> */ }
77+
78+ { /* <a
79+ href="https://www.instagram.com/yourprofile" // Replace with your Instagram URL
80+ target="_blank"
81+ rel="noopener noreferrer"
82+ >
5483 <FaInstagram className="text-gray-400 hover:text-white cursor-pointer" size={22} />
84+ </a> */ }
85+
86+ < a
87+ href = "https://github.com/Sujal-Raj/" // Replace with your GitHub URL
88+ target = "_blank"
89+ rel = "noopener noreferrer"
90+ >
5591 < FaGithub className = "text-gray-400 hover:text-white cursor-pointer" size = { 22 } />
56- </ div >
92+ </ a >
93+
94+ < a
95+ href = "https://www.linkedin.com/in/sujalraj1/" // Replace with your LinkedIn URL
96+ target = "_blank"
97+ rel = "noopener noreferrer"
98+ >
99+ < FaLinkedin className = "text-gray-400 hover:text-white cursor-pointer" size = { 22 } />
100+ </ a >
57101 </ div >
102+ </ div >
58103 </ footer >
59104 </ >
60105 )
0 commit comments