4
0
forked from crowetic/commerce

Footer links hover

This commit is contained in:
paco 2020-10-08 14:20:04 -06:00
parent 6bc416eb74
commit 450921bd55
No known key found for this signature in database
GPG Key ID: CD243AF4E535B475

View File

@ -27,19 +27,25 @@ const Footer: FC<Props> = ({ className }) => {
<ul className="flex flex-initial flex-col divide-y divide-gray-700 md:divide-y-0 my-12 md:my-0 md:flex-1">
<li className="py-3 md:py-0 md:pb-4">
<Link href="/about">
<a>About</a>
<a className="text-gray-400 hover:text-white transition ease-in-out duration-100">
About
</a>
</Link>
</li>
<li className="py-3 md:py-0 md:pb-4">
<Link href="/terms">
<a>Terms of Use</a>
<a className="text-gray-400 hover:text-white transition ease-in-out duration-100">
Terms of Use
</a>
</Link>
</li>
<li className="py-3 md:py-0 md:pb-4">
<Link href="/privacy">
<a>Privacy Policy</a>
<a className="text-gray-400 hover:text-white transition ease-in-out duration-100">
Privacy Policy
</a>
</Link>
</li>
</ul>