Skip to content

Commit 5bbce1a

Browse files
Merge pull request #394 from Shweta2117409/fix-footer-placeholder-links
Fix footer placeholder links
2 parents f02b3c5 + ff7deea commit 5bbce1a

1 file changed

Lines changed: 13 additions & 10 deletions

File tree

src/components/Footer.tsx

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ function Footer() {
3636
"
3737
>
3838
<div className="max-w-7xl mx-auto px-8 pt-16 pb-10 relative z-10">
39+
3940
{/* Upper Section */}
4041
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-12 gap-10 pb-12 border-b border-zinc-200 dark:border-zinc-800/60">
4142

@@ -148,6 +149,7 @@ function Footer() {
148149
{/* Social Icons */}
149150
<div className="flex items-center space-x-5">
150151

152+
{/* GitHub */}
151153
<a
152154
href="https://github.com/GitMetricsLab/github_tracker"
153155
target="_blank"
@@ -157,21 +159,22 @@ function Footer() {
157159
>
158160
<FaGithub className="h-6 w-6" />
159161
</a>
160-
<a
161-
href="https://x.com/your_handle"
162-
target="_blank"
163-
rel="noopener noreferrer"
164-
className="text-zinc-400 dark:text-zinc-500 hover:text-sky-500 dark:hover:text-zinc-100 transition-colors duration-200"
165-
aria-label="X"
162+
163+
{/* Twitter */}
164+
<a
165+
href="#"
166+
onClick={(e) => e.preventDefault()}
167+
className="text-zinc-600 dark:text-zinc-400 hover:text-sky-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
168+
aria-label="Twitter"
166169
>
167170
<FaXTwitter className="h-7 w-7" />
168171
</a>
169172

173+
{/* Discord */}
170174
<a
171-
href="https://discord.gg/your_invite"
172-
target="_blank"
173-
rel="noopener noreferrer"
174-
className="text-zinc-600 dark:text-zinc-400 hover:text-indigo-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110"
175+
href="#"
176+
onClick={(e) => e.preventDefault()}
177+
className="text-zinc-600 dark:text-zinc-400 hover:text-indigo-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
175178
aria-label="Discord"
176179
>
177180
<FaDiscord className="h-6 w-6" />

0 commit comments

Comments
 (0)