light mode thing was my worst idea
This commit is contained in:
parent
1e1cc27bcb
commit
898af861d7
1 changed files with 8 additions and 2 deletions
|
@ -28,7 +28,10 @@ const Footer = () => {
|
||||||
<h1 className="foot-header font-[700] text-primary">Other Pages</h1>
|
<h1 className="foot-header font-[700] text-primary">Other Pages</h1>
|
||||||
{FOOTERLINKS.otherPages.map((link) => (
|
{FOOTERLINKS.otherPages.map((link) => (
|
||||||
<h3 key={link.href}>
|
<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.label}
|
||||||
</Link>
|
</Link>
|
||||||
</h3>
|
</h3>
|
||||||
|
@ -38,7 +41,10 @@ const Footer = () => {
|
||||||
<h1 className="foot-header text-primary">Plans</h1>
|
<h1 className="foot-header text-primary">Plans</h1>
|
||||||
{FOOTERLINKS.plans.map((link) => (
|
{FOOTERLINKS.plans.map((link) => (
|
||||||
<h3 key={link.href}>
|
<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.label}
|
||||||
</Link>
|
</Link>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
Loading…
Reference in a new issue