Skip to content
Merged
Show file tree
Hide file tree
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
65 changes: 64 additions & 1 deletion pages/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ const Home = (props: any) => {
const [rxdb_logo, setRxdb_logo] = useState('');
const [wda_logo, setWDA_logo] = useState('');
const [anon_logo, setAnon_logo] = useState('');
const [sourcemeta_logo, setSourcemeta_logo] = useState('');
const [dottxt_logo, setDottxt_logo] = useState('');
const [supadata_logo, setSupadata_logo] = useState('');
const [devevents_logo, setDevevents_logo] = useState('');

useEffect(() => {
// Ensure the component is only rendered client-side
Expand All @@ -135,6 +139,10 @@ const Home = (props: any) => {
setRxdb_logo('/img/logos/sponsors/rxdb.svg');
setWDA_logo('/img/logos/sponsors/wda-dark.svg');
setAnon_logo('/img/logos/sponsors/anon-white.png');
setSourcemeta_logo('/img/logos/sponsors/sourcemeta-logo-light.svg');
setDottxt_logo('/img/logos/sponsors/dottxt-logo-white.svg');
setSupadata_logo('/img/logos/sponsors/supadata-logo-light.svg');
setDevevents_logo('/img/logos/dark-mode/dev_events_logo.png');
} else {
setAsyncapi_logo('/img/logos/sponsors/asyncapi-logo-dark.svg');
setAirbnb_logo('/img/logos/sponsors/airbnb-logo.png');
Expand All @@ -153,6 +161,9 @@ const Home = (props: any) => {
setRxdb_logo('/img/logos/sponsors/rxdb.svg');
setWDA_logo('/img/logos/sponsors/wda.svg');
setAnon_logo('/img/logos/sponsors/anon-black.png');
setSourcemeta_logo('/img/logos/sponsors/sourcemeta-logo-dark.svg');
setSupadata_logo('/img/logos/sponsors/supadata-logo-dark.svg');
setDottxt_logo('/img/logos/sponsors/dottxt-logo-dark.svg');
}
}, [resolvedTheme]);
return (
Expand Down Expand Up @@ -875,6 +886,27 @@ for Accounting integrations'
alt='Instagram Story Viewer'
/>
</a>
<a href='https://supadata.ai/' target='_blank' rel='noreferrer'>
<img
src={supadata_logo}
className=' w-44'
alt='supadata logo'
/>
</a>
<a href='https://dottxt.ai/' target='_blank' rel='noreferrer'>
<img src={dottxt_logo} className=' w-44' alt='dottxt logo' />
</a>
<a
href='https://www.sourcemeta.com/'
target='_blank'
rel='noreferrer'
>
<img
src={sourcemeta_logo}
className=' w-44'
alt='dottxt logo'
/>
</a>
<a
href='https://opencollective.com/json-schema/contribute/sponsor-10816/checkout?interval=month&amount=100&name=&legalName=&email='
target='_blank'
Expand All @@ -901,9 +933,40 @@ for Accounting integrations'
</div>
</section>

{/* Media Partner for JSON Schema conference */}
<section className='my-16'>
<div className='text-center mb-12'>
<h2 className='text-h3mobile md:text-h3 font-semibold mb-2 dark:text-slate-200'>
Media Partner
</h2>
<p className='px-12 mx-auto md:w-3/4 md:mx-auto dark:text-slate-300'>
The JSON Schema Conference is proudly featured on a global
platform connecting tech communities with over 250k monthly
visitors, helping speakers, organizers, and attendees discover and
engage with leading conferences worldwide.
<br />
</p>
</div>
<div className='flex flex-col items-center md:flex-row justify-center text-center gap-x-14 gap-y-4 mb-12'>
<a href='https://dev.events/'>
{isClient && (
<>
<Image
src={devevents_logo}
className='w-48 md:w-56'
width={192}
height={224}
alt='dev events'
/>
</>
)}
</a>
</div>{' '}
</section>

{/* Supported */}

<section className='my-20'>
<section className='my-16'>
<div className='text-center mb-12'>
<h2 className='text-h3mobile md:text-h3 font-semibold mb-2'>
Supported by
Expand Down
Binary file added public/img/logos/dark-mode/dev_events_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/img/logos/sponsors/dottxt-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/img/logos/sponsors/dottxt-logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading