2023-07-31 19:06:46 +02:00
|
|
|
import { getI18n } from '@/i18n/i18n.server'
|
2021-07-04 19:56:05 +02:00
|
|
|
|
|
|
|
import { Repository } from './Repository'
|
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const OpenSource = (): JSX.Element => {
|
2023-07-31 19:06:46 +02:00
|
|
|
const i18n = getI18n()
|
2021-07-04 19:56:05 +02:00
|
|
|
|
|
|
|
return (
|
2021-12-04 15:52:51 +01:00
|
|
|
<div className='mt-0 flex max-w-full flex-col items-center'>
|
2023-07-31 19:06:46 +02:00
|
|
|
<p className='text-center'>
|
|
|
|
{i18n.translate('home.open-source.description')}
|
|
|
|
</p>
|
2021-12-04 15:52:51 +01:00
|
|
|
<div className='my-6 grid grid-cols-1 gap-6 md:w-10/12 md:grid-cols-2'>
|
|
|
|
<Repository
|
|
|
|
name='nodejs/node'
|
2023-07-30 18:50:14 +02:00
|
|
|
description='Node.js JavaScript runtime ✨🐢🚀✨'
|
2023-05-31 20:09:08 +02:00
|
|
|
href='https://github.com/nodejs/node/commits?author=theoludwig'
|
2021-12-04 15:52:51 +01:00
|
|
|
/>
|
|
|
|
<Repository
|
|
|
|
name='standard/standard'
|
|
|
|
description='🌟 JavaScript Style Guide, with linter & automatic code fixer'
|
2023-05-31 20:09:08 +02:00
|
|
|
href='https://github.com/standard/standard/commits?author=theoludwig'
|
2021-12-04 15:52:51 +01:00
|
|
|
/>
|
|
|
|
<Repository
|
|
|
|
name='nrwl/nx'
|
2023-07-30 18:50:14 +02:00
|
|
|
description='Smart, Fast and Extensible Build System'
|
2023-05-31 20:09:08 +02:00
|
|
|
href='https://github.com/nrwl/nx/commits?author=theoludwig'
|
2021-12-04 15:52:51 +01:00
|
|
|
/>
|
|
|
|
<Repository
|
|
|
|
name='vercel/next.js'
|
2023-07-30 18:50:14 +02:00
|
|
|
description='The React Framework'
|
2023-05-31 20:09:08 +02:00
|
|
|
href='https://github.com/vercel/next.js/commits?author=theoludwig'
|
2021-12-04 15:52:51 +01:00
|
|
|
/>
|
2021-07-04 19:56:05 +02:00
|
|
|
</div>
|
2021-12-04 15:52:51 +01:00
|
|
|
</div>
|
2021-07-04 19:56:05 +02:00
|
|
|
)
|
|
|
|
}
|