Skip to content

Commit

Permalink
Fix: URL color on homepage in dark-mode (#1286)
Browse files Browse the repository at this point in the history
* Fix: URL color on homepage in darkmode

* Fix prettier error
  • Loading branch information
Adi-204 authored Jan 19, 2025
1 parent 54ae0bf commit ee9538b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pages/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -579,27 +579,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 @@ -886,7 +889,7 @@ for Accounting integrations'
<br />
<a
href='mailto:[email protected]'
className='border-b border-black'
className='border-b border-black dark:border-white'
>
Email us
</a>{' '}
Expand Down

0 comments on commit ee9538b

Please sign in to comment.