Skip to content
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
17 changes: 10 additions & 7 deletions components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,13 +351,16 @@ const Footer = () => (
<div className='flex flex-col text-center sm:text-left'>
<a
href='https://opencollective.com/json-schema'
className='text-white mb-2'
className='text-white mb-2 hover:text-blue-400 transition-all duration-300 ease-in-out hover:translate-x-1'
>
Open Collective
</a>
</div>
<div className='flex flex-col text-center sm:text-left'>
<Link href='/overview/code-of-conduct' className='text-white mb-2'>
<Link
href='/overview/code-of-conduct'
className='text-white mb-2 hover:text-blue-400 transition-all duration-300 ease-in-out hover:translate-x-1'
>
Code of Conduct
</Link>
</div>
Expand All @@ -366,7 +369,7 @@ const Footer = () => (
<div className=''>
<a
href='https://json-schema.org/slack'
className='flex items-center text-white'
className='flex items-center text-white hover:text-blue-400 transition-all duration-300 ease-in-out hover:translate-x-1'
>
<Image
src='/img/logos/slack_logo_small-white.svg'
Expand All @@ -381,7 +384,7 @@ const Footer = () => (
<div className=''>
<a
href='https://x.com/jsonschema'
className='flex items-center text-white'
className='flex items-center text-white hover:text-blue-400 transition-all duration-300 ease-in-out hover:translate-x-1'
>
<Image
src='/img/logos/x-twitter.svg'
Expand All @@ -396,7 +399,7 @@ const Footer = () => (
<div className=''>
<a
href='https://linkedin.com/company/jsonschema/'
className='flex items-center text-white'
className='flex items-center text-white hover:text-blue-400 transition-all duration-300 ease-in-out hover:translate-x-1'
>
<Image
src='/img/logos/icons8-linkedin-2.svg'
Expand All @@ -411,7 +414,7 @@ const Footer = () => (
<div className=''>
<a
href='https://www.youtube.com/@JSONSchemaOrgOfficial'
className='flex items-center text-white'
className='flex items-center text-white hover:text-blue-400 transition-all duration-300 ease-in-out hover:translate-x-1'
>
<Image
src='/img/logos/icons8-youtube.svg'
Expand All @@ -426,7 +429,7 @@ const Footer = () => (
<div className=''>
<a
href='https://github.com/json-schema-org'
className='flex items-center text-white'
className='flex items-center text-white hover:text-blue-400 transition-all duration-300 ease-in-out hover:translate-x-1'
>
<Image
src='/img/logos/github_logo-white.svg'
Expand Down
Loading