Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: URL color on homepage in dark-mode #1286

Merged
merged 2 commits into from
Jan 19, 2025
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
13 changes: 8 additions & 5 deletions pages/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -512,27 +512,30 @@ const Home = (props: any) => {
If you ❤️ JSON Schema consider becoming a{' '}
<a
href='https://json-schema.org/overview/sponsors'
className='border-b border-black'
className='border-b border-black dark:border-white'
>
sponsor
</a>
, a{' '}
<a
href='https://json-schema.org/overview/sponsors#benefits-of-being-an-individual-backer'
className='border-b border-black '
className='border-b border-black dark:border-white'
>
backer
</a>{' '}
or hiring our{' '}
<a href='/pro-help' className='border-b border-black'>
<a
href='/pro-help'
className='border-b border-black dark:border-white'
>
pro services
</a>
.
</p>
<p className='w-5/6 lg:w-3/5 mx-auto'>
<a
href='https://opencollective.com/json-schema'
className='border-b border-black'
className='border-b border-black dark:border-white'
>
Support us!
</a>
Expand Down Expand Up @@ -696,7 +699,7 @@ const Home = (props: any) => {
<br />
<a
href='mailto:[email protected]'
className='border-b border-black'
className='border-b border-black dark:border-white'
>
Email us
</a>{' '}
Expand Down
Loading