Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.
Closed
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
8 changes: 6 additions & 2 deletions src/Components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ import { useTheme } from '../ThemeContext'
function Home() {
const darkTheme = useTheme()

const darkModeLinkColor = {
color: darkTheme ? '#219ebc' : '#355070',
}

return (
<>
<header>
Expand All @@ -31,9 +35,9 @@ 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
See <Link to="/eddiejaoude"><span style={darkModeLinkColor}>Eddie Jaoude&apos;s</span></Link> profile for an
example. Want to add your profile? Read the{' '}
<a href="https://github.com/EddieHubCommunity/LinkFree#-to-add-your-profile">
<a href="https://github.com/EddieHubCommunity/LinkFree#-to-add-your-profile" style={darkModeLinkColor}>
instructions
</a>
.
Expand Down