2023-10-23 23:11:59 +02:00
|
|
|
import { getI18n } from "@/i18n/i18n.server"
|
2021-07-04 19:56:05 +02:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
import { Repository } from "./Repository"
|
2021-07-04 19:56:05 +02:00
|
|
|
|
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 (
|
2023-10-23 23:11:59 +02:00
|
|
|
<div className="mt-0 flex max-w-full flex-col items-center">
|
|
|
|
<p className="text-center">
|
|
|
|
{i18n.translate("home.open-source.description")}
|
2023-07-31 19:06:46 +02:00
|
|
|
</p>
|
2024-05-16 09:56:19 +02:00
|
|
|
<ul className="my-6 grid grid-cols-1 gap-6 md:w-10/12 md:grid-cols-2">
|
2021-12-04 15:52:51 +01:00
|
|
|
<Repository
|
2023-10-23 23:11:59 +02:00
|
|
|
name="nodejs/node"
|
|
|
|
description="Node.js JavaScript runtime ✨🐢🚀✨"
|
|
|
|
href="https://github.com/nodejs/node/commits?author=theoludwig"
|
2021-12-04 15:52:51 +01:00
|
|
|
/>
|
|
|
|
<Repository
|
2023-10-23 23:11:59 +02:00
|
|
|
name="standard/standard"
|
|
|
|
description="🌟 JavaScript Style Guide, with linter & automatic code fixer"
|
|
|
|
href="https://github.com/standard/standard/commits?author=theoludwig"
|
2021-12-04 15:52:51 +01:00
|
|
|
/>
|
|
|
|
<Repository
|
2024-01-23 22:13:39 +01:00
|
|
|
name="DefinitelyTyped/DefinitelyTyped"
|
|
|
|
description="High quality TypeScript type definitions."
|
|
|
|
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits?author=theoludwig"
|
2021-12-04 15:52:51 +01:00
|
|
|
/>
|
|
|
|
<Repository
|
2023-10-23 23:11:59 +02:00
|
|
|
name="vercel/next.js"
|
|
|
|
description="The React Framework"
|
|
|
|
href="https://github.com/vercel/next.js/commits?author=theoludwig"
|
2021-12-04 15:52:51 +01:00
|
|
|
/>
|
2024-05-16 09:56:19 +02:00
|
|
|
</ul>
|
2021-12-04 15:52:51 +01:00
|
|
|
</div>
|
2021-07-04 19:56:05 +02:00
|
|
|
)
|
|
|
|
}
|