light mode thing was my worst idea

This commit is contained in:
Proxyy587 2024-06-16 00:12:44 +05:30
parent 1e1cc27bcb
commit 898af861d7

View file

@ -28,7 +28,10 @@ const Footer = () => {
<h1 className="foot-header font-[700] text-primary">Other Pages</h1>
{FOOTERLINKS.otherPages.map((link) => (
<h3 key={link.href}>
<Link href={link.href} className="hover:text-green-100/70">
<Link
href={link.href}
className="dark:hover:text-green-100/70 hover:text-green-500"
>
{link.label}
</Link>
</h3>
@ -38,7 +41,10 @@ const Footer = () => {
<h1 className="foot-header text-primary">Plans</h1>
{FOOTERLINKS.plans.map((link) => (
<h3 key={link.href}>
<Link href={link.href} className="hover:text-green-100/70">
<Link
href={link.href}
className="dark:hover:text-green-100/70 hover:text-green-500"
>
{link.label}
</Link>
</h3>