Skip to content

Commit 75626e8

Browse files
committed
Remove placeholder social media links from footer
1 parent faa3d21 commit 75626e8

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

src/components/Footer.tsx

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ function Footer() {
3434
"
3535
>
3636
<div className="max-w-7xl mx-auto px-8 pt-16 pb-10 relative z-10">
37+
3738
{/* Upper Section */}
3839
<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">
3940

@@ -146,6 +147,7 @@ function Footer() {
146147
{/* Social Icons */}
147148
<div className="flex items-center space-x-5">
148149

150+
{/* GitHub */}
149151
<a
150152
href="https://github.com/GitMetricsLab/github_tracker"
151153
target="_blank"
@@ -156,21 +158,21 @@ function Footer() {
156158
<FaGithub className="h-6 w-6" />
157159
</a>
158160

161+
{/* Twitter */}
159162
<a
160-
href="https://x.com/your_handle"
161-
target="_blank"
162-
rel="noopener noreferrer"
163-
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"
163+
href="#"
164+
onClick={(e) => e.preventDefault()}
165+
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"
164166
aria-label="Twitter"
165167
>
166168
<FaTwitter className="h-6 w-6" />
167169
</a>
168170

171+
{/* Discord */}
169172
<a
170-
href="https://discord.gg/your_invite"
171-
target="_blank"
172-
rel="noopener noreferrer"
173-
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"
173+
href="#"
174+
onClick={(e) => e.preventDefault()}
175+
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"
174176
aria-label="Discord"
175177
>
176178
<FaDiscord className="h-6 w-6" />

0 commit comments

Comments
 (0)