lev-stake-sol/components/Footer.tsx

16 lines
381 B
TypeScript
Raw Normal View History

2023-09-29 05:14:40 -07:00
const Footer = () => {
return (
<div className="mt-6 flex justify-center rounded-lg border-2 border-th-fgd-1 bg-th-bkg-1 px-6 py-4">
<a
href="https://app.mango.markets"
rel="noopener noreferrer"
target="_blank"
>
2023-10-01 16:37:26 -07:00
<span className="font-medium text-th-fgd-1">Powered by 🥭</span>
2023-09-29 05:14:40 -07:00
</a>
</div>
)
}
export default Footer