Skip to content

Commit 677ed7b

Browse files
committed
replaced footer text with icons
1 parent 92fbffe commit 677ed7b

File tree

1 file changed

+35
-4
lines changed

1 file changed

+35
-4
lines changed

src/App.tsx

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ 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+
import { FaTwitter, FaGithub, FaDiscord, FaLinkedin } from "react-icons/fa";
1213

1314
function 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

Comments
 (0)