@@ -9,6 +9,7 @@ import { Profile } from './components/Profile/Profile';
99import { SubmitChallenge } from './components/Submit/SubmitChallenge' ;
1010import { Community } from './components/Community/Community' ;
1111import { Challenge } from './components/Challenges/ChallengeCard' ;
12+ import { FaTwitter , FaGithub , FaDiscord , FaLinkedin } from "react-icons/fa" ;
1213
1314function App ( ) {
1415 const [ currentPage , setCurrentPage ] = useState < string > ( 'home' ) ;
@@ -83,10 +84,40 @@ function App() {
8384 A platform where learners explore real-world challenges across design, development,
8485 writing, data, and more. Build skills through practice, not just theory.
8586 </ p >
87+ { /* Replaced text buttons with icons */ }
8688 < div className = "flex space-x-4" >
87- < button className = "text-gray-400 hover:text-white transition-colors" > Twitter</ button >
88- < button className = "text-gray-400 hover:text-white transition-colors" > GitHub</ button >
89- < button className = "text-gray-400 hover:text-white transition-colors" > Discord</ button >
89+ < a
90+ href = "https://x.com/_Rizwan_10"
91+ target = "_blank"
92+ rel = "noopener noreferrer"
93+ className = "text-gray-400 hover:text-white transition-colors"
94+ >
95+ < FaTwitter size = { 24 } />
96+ </ a >
97+ < a
98+ href = "https://github.com/Code-Social/canitrythis"
99+ target = "_blank"
100+ rel = "noopener noreferrer"
101+ className = "text-gray-400 hover:text-white transition-colors"
102+ >
103+ < FaGithub size = { 24 } />
104+ </ a >
105+ < a
106+ href = "https://discord.com/invite/your-server"
107+ target = "_blank"
108+ rel = "noopener noreferrer"
109+ className = "text-gray-400 hover:text-white transition-colors"
110+ >
111+ < FaDiscord size = { 24 } />
112+ </ a >
113+ < a
114+ href = "https://www.linkedin.com/in/skmdrizwan/"
115+ target = "_blank"
116+ rel = "noopener noreferrer"
117+ className = "text-gray-400 hover:text-white transition-colors"
118+ >
119+ < FaLinkedin size = { 24 } />
120+ </ a >
90121 </ div >
91122 </ div >
92123
@@ -121,4 +152,4 @@ function App() {
121152 ) ;
122153}
123154
124- export default App ;
155+ export default App ;
0 commit comments