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

Changed Color of Links in Dark Mode #1929

Merged
merged 1 commit into from
Oct 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions src/Components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,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