fix: add color transition to the footer links

This commit is contained in:
Dorian Niemiec 2024-11-07 22:50:34 +01:00
parent 7c8c2f56b0
commit d5d27b85c5

View file

@ -20,7 +20,7 @@ function Footer() {
<span key={link.href}> <span key={link.href}>
<Link <Link
href={link.href} href={link.href}
className="text-base hover:text-primary hover:underline" className="text-base hover:text-primary hover:underline transition-colors duration-100"
> >
{link.label} {link.label}
</Link> </Link>
@ -34,7 +34,7 @@ function Footer() {
<span key={link.href}> <span key={link.href}>
<Link <Link
href={link.href} href={link.href}
className="text-base hover:text-primary hover:underline" className="text-base hover:text-primary hover:underline transition-colors duration-100"
> >
{link.label} {link.label}
</Link> </Link>