@@ -9,8 +9,12 @@ 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+
13+ import { FaTwitter , FaGithub , FaDiscord , FaLinkedin } from "react-icons/fa" ;
14+
1215import { ThemeProvider } from './themeContent' ; // Import the new ThemeProvider
1316
17+
1418function App ( ) {
1519 const [ currentPage , setCurrentPage ] = useState < string > ( 'home' ) ;
1620 const [ selectedChallenge , setSelectedChallenge ] = useState < Challenge | null > ( null ) ;
@@ -91,6 +95,46 @@ function App() {
9195 < button className = "text-gray-400 hover:text-white transition-colors" > Discord</ button >
9296 </ div >
9397 </ div >
98+
99+ < p className = "text-gray-400 mb-6" >
100+ A platform where learners explore real-world challenges across design, development,
101+ writing, data, and more. Build skills through practice, not just theory.
102+ </ p >
103+ { /* Replaced text buttons with icons */ }
104+ < div className = "flex space-x-4" >
105+ < a
106+ href = "https://x.com/codesocial_tech"
107+ target = "_blank"
108+ rel = "noopener noreferrer"
109+ className = "text-gray-400 hover:text-white transition-colors"
110+ >
111+ < FaTwitter size = { 24 } />
112+ </ a >
113+ < a
114+ href = "https://github.com/Code-Social"
115+ target = "_blank"
116+ rel = "noopener noreferrer"
117+ className = "text-gray-400 hover:text-white transition-colors"
118+ >
119+ < FaGithub size = { 24 } />
120+ </ a >
121+ < a
122+ href = "https://discord.com/invite/MSTNyRSPYW"
123+ target = "_blank"
124+ rel = "noopener noreferrer"
125+ className = "text-gray-400 hover:text-white transition-colors"
126+ >
127+ < FaDiscord size = { 24 } />
128+ </ a >
129+ < a
130+ href = "https://www.linkedin.com/company/code-social/"
131+ target = "_blank"
132+ rel = "noopener noreferrer"
133+ className = "text-gray-400 hover:text-white transition-colors"
134+ >
135+ < FaLinkedin size = { 24 } />
136+ </ a >
137+
94138
95139 < div >
96140 < h4 className = "font-semibold mb-4" > Platform</ h4 >
@@ -110,6 +154,7 @@ function App() {
110154 < li > < button className = "hover:text-white transition-colors" > Contact Us</ button > </ li >
111155 < li > < button className = "hover:text-white transition-colors" > Privacy Policy</ button > </ li >
112156 </ ul >
157+
113158 </ div >
114159 </ div >
115160
@@ -124,4 +169,8 @@ function App() {
124169 ) ;
125170}
126171
172+
173+ export default App ;
174+
127175export default App ;
176+
0 commit comments