Skip to content

Commit f17fc97

Browse files
authored
Revert "Footer icons"
1 parent 6f641d6 commit f17fc97

File tree

1 file changed

+0
-49
lines changed

1 file changed

+0
-49
lines changed

src/App.tsx

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,8 @@ import { Profile } from './components/Profile/Profile';
99
import { SubmitChallenge } from './components/Submit/SubmitChallenge';
1010
import { Community } from './components/Community/Community';
1111
import { Challenge } from './components/Challenges/ChallengeCard';
12-
13-
import { FaTwitter, FaGithub, FaDiscord, FaLinkedin } from "react-icons/fa";
14-
1512
import { ThemeProvider } from './themeContent'; // Import the new ThemeProvider
1613

17-
1814
function App() {
1915
const [currentPage, setCurrentPage] = useState<string>('home');
2016
const [selectedChallenge, setSelectedChallenge] = useState<Challenge | null>(null);
@@ -95,46 +91,6 @@ function App() {
9591
<button className="text-gray-400 hover:text-white transition-colors">Discord</button>
9692
</div>
9793
</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-
13894

13995
<div>
14096
<h4 className="font-semibold mb-4">Platform</h4>
@@ -154,7 +110,6 @@ function App() {
154110
<li><button className="hover:text-white transition-colors">Contact Us</button></li>
155111
<li><button className="hover:text-white transition-colors">Privacy Policy</button></li>
156112
</ul>
157-
158113
</div>
159114
</div>
160115

@@ -169,8 +124,4 @@ function App() {
169124
);
170125
}
171126

172-
173-
export default App;
174-
175127
export default App;
176-

0 commit comments

Comments
 (0)