Skip to content

Commit 39497b0

Browse files
authored
Merge pull request #9 from vagxrth/feature/modify-footer
[FEAT]: update footer component with new icons and alignment
2 parents dadaff3 + 598c36c commit 39497b0

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

apps/docs/components/footer.tsx

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { Mail, MessageCircle, Github, Twitter, Home } from 'lucide-react';
1+
import { FaGithub, FaXTwitter, FaDiscord } from "react-icons/fa6";
2+
import { IoMdMail } from "react-icons/io";
23
import { LogoContent } from './logo';
34

45
export function Footer() {
@@ -36,28 +37,29 @@ export function Footer() {
3637
<ul className="space-y-2 text-sm">
3738
<li>
3839
<a href="mailto:[email protected]" className="flex items-center gap-2 text-muted-foreground hover:text-foreground">
39-
<Mail className="h-4 w-4" />
40+
<IoMdMail className="h-4 w-4" />
4041
4142
</a>
4243
</li>
4344
<li>
44-
<a href="https://discord.gg/JTk7a38tCZ" className="flex items-center gap-2 text-muted-foreground hover:text-foreground">
45-
<MessageCircle className="h-4 w-4" />
45+
<a href="https://discord.gg/JTk7a38tCZ" target="_blank" className="flex items-center gap-2 text-muted-foreground hover:text-foreground">
46+
<FaDiscord className="h-4 w-4" />
4647
Discord
4748
</a>
4849
</li>
50+
<li>
51+
<a href="https://github.com/databuddy-analytics" target="_blank" className="flex items-center gap-2 text-muted-foreground hover:text-foreground">
52+
<FaGithub className="h-4 w-4" />
53+
GitHub
54+
</a>
55+
</li>
56+
<li>
57+
<a href="https://x.com/trydatabuddy" target="_blank" className="flex items-center gap-2 text-muted-foreground hover:text-foreground">
58+
<FaXTwitter className="h-4 w-4" />
59+
X (Twitter)
60+
</a>
61+
</li>
4962
</ul>
50-
<div className="flex gap-2 pt-2">
51-
<a href="https://github.com/databuddy-analytics" className="p-2 rounded bg-muted hover:bg-muted/80" aria-label="GitHub">
52-
<Github className="h-4 w-4" />
53-
</a>
54-
<a href="https://x.com/trydatabuddy" className="p-2 rounded bg-muted hover:bg-muted/80" aria-label="Twitter">
55-
<Twitter className="h-4 w-4" />
56-
</a>
57-
<a href="https://app.databuddy.cc" className="p-2 rounded bg-muted hover:bg-muted/80" aria-label="Dashboard">
58-
<Home className="h-4 w-4" />
59-
</a>
60-
</div>
6163
</div>
6264
</div>
6365

0 commit comments

Comments
 (0)