|
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"; |
2 | 3 | import { LogoContent } from './logo'; |
3 | 4 |
|
4 | 5 | export function Footer() { |
@@ -36,28 +37,29 @@ export function Footer() { |
36 | 37 | <ul className="space-y-2 text-sm"> |
37 | 38 | <li> |
38 | 39 | <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" /> |
40 | 41 | |
41 | 42 | </a> |
42 | 43 | </li> |
43 | 44 | <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" /> |
46 | 47 | Discord |
47 | 48 | </a> |
48 | 49 | </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> |
49 | 62 | </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> |
61 | 63 | </div> |
62 | 64 | </div> |
63 | 65 |
|
|
0 commit comments