Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix: color of hyperlinks in dark mode (#1929)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvdabhi101 committed Oct 28, 2022
1 parent ea49b59 commit 7a073cb
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/Components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,18 @@ function Home() {
It is an open-source alternative to Linktree implemented in JavaScript
</p>
<p className="text-1xl text-center">
See <Link to="/eddiejaoude">Eddie Jaoude&apos;s</Link> profile for an
example. Want to add your profile? Read the{' '}
<a href="https://github.com/EddieHubCommunity/LinkFree#-to-add-your-profile">
See{' '}
<Link
to="/eddiejaoude"
className={`${darkTheme ? 'text-blue-200' : ''}`}
>
Eddie Jaoude&apos;s
</Link>{' '}
profile for an example. Want to add your profile? Read the{' '}
<a
href="https://github.com/EddieHubCommunity/LinkFree#-to-add-your-profile"
className={`${darkTheme ? 'text-blue-200' : ''}`}
>
instructions
</a>
.
Expand Down

0 comments on commit 7a073cb

Please sign in to comment.