Skip to content

Commit

Permalink
fixed footer color inconsistency in lightmode.
Browse files Browse the repository at this point in the history
  • Loading branch information
swedishfrenchpress committed Dec 13, 2024
1 parent b6add22 commit 9c9994b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,18 @@ function HomeContent(): JSX.Element {
rel="noopener noreferrer">
Official Website
</a>
<a href="https://github.com/cashubtc/awesome-cashu" className="text-zinc-400 hover:text-purple-400 transition-colors" target="_blank" rel="noopener noreferrer">
<a href="https://github.com/cashubtc/awesome-cashu"
className={`${colorMode === 'dark' ? 'text-zinc-400' : 'text-gray-600'}
hover:text-purple-500 transition-colors`}
target="_blank"
rel="noopener noreferrer">
Awesome Cashu
</a>
<a href="https://opencash.dev" className="text-zinc-400 hover:text-purple-400 transition-colors" target="_blank" rel="noopener noreferrer">
<a href="https://opencash.dev"
className={`${colorMode === 'dark' ? 'text-zinc-400' : 'text-gray-600'}
hover:text-purple-500 transition-colors`}
target="_blank"
rel="noopener noreferrer">
OpenCash Association
</a>
</div>
Expand Down

0 comments on commit 9c9994b

Please sign in to comment.