VoteLink.tsx18 lines · main
| 1 | import Link from 'next/link' |
| 2 | |
| 3 | export const VoteLink = () => { |
| 4 | return ( |
| 5 | <div className="flex items-center justify-center gap-1.5 text-sm"> |
| 6 | <p className="text-foreground-light"> |
| 7 | Don't see your preferred drain?{' '} |
| 8 | <Link |
| 9 | href="https://github.com/orgs/briven/discussions/28324?sort=top" |
| 10 | className="text-foreground underline underline-offset-2 decoration-foreground-muted hover:decoration-foreground transition-all" |
| 11 | target="_blank" |
| 12 | > |
| 13 | Vote here |
| 14 | </Link> |
| 15 | </p> |
| 16 | </div> |
| 17 | ) |
| 18 | } |