1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 14:05:53 +02:00
.profile/components/OpenSource/index.tsx

38 lines
1.3 KiB
TypeScript
Raw Normal View History

import { getI18n } from "@/i18n/i18n.server"
2021-07-04 19:56:05 +02:00
import { Repository } from "./Repository"
2021-07-04 19:56:05 +02:00
export const OpenSource = (): JSX.Element => {
const i18n = getI18n()
2021-07-04 19:56:05 +02:00
return (
<div className="mt-0 flex max-w-full flex-col items-center">
<p className="text-center">
{i18n.translate("home.open-source.description")}
</p>
<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
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
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
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
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
/>
</ul>
2021-12-04 15:52:51 +01:00
</div>
2021-07-04 19:56:05 +02:00
)
}