VoteLink.tsx 560 B

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