mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:45:41 +00:00
91 lines
4.4 KiB
TypeScript
91 lines
4.4 KiB
TypeScript
import {GetStaticProps} from 'next'
|
|
import Head from 'next/head'
|
|
import {Card} from '@/components/Card'
|
|
import {SimpleLayout} from '@/components/SimpleLayout'
|
|
import {SocialLink} from '@/components/SocialLink'
|
|
import {StarIcon} from '@/components/StarIcon'
|
|
import {ForkIcon} from '@/components/ForkIcon'
|
|
import {getPinnedRepos} from '@/lib/github'
|
|
import {numberFormat} from '@/lib/numberFormat'
|
|
import type {Repo} from '@/types'
|
|
|
|
export default function Projects({pinnedRepos}: { pinnedRepos: Repo[] }) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Projects - Ryan Freeman</title>
|
|
<meta
|
|
name="description"
|
|
content="Things I've made and projects I've worked on."
|
|
/>
|
|
<meta
|
|
property="og:title"
|
|
content="Projects - Ryan Freeman"
|
|
/>
|
|
<meta
|
|
property="og:description"
|
|
content="Things I've made and projects I've worked on."
|
|
/>
|
|
</Head>
|
|
<SimpleLayout
|
|
title="Things I've made and projects I've worked on."
|
|
intro="Here's a selection of academic and personal projects that I have worked on. Many of them are open-source, so if you see something that piques your interest, check out the code and contribute if you have ideas for how it can be improved."
|
|
gradient="bg-gradient-to-r from-sky-400 to-blue-500"
|
|
>
|
|
<ul
|
|
role="list"
|
|
className="grid grid-cols-1 gap-x-12 gap-y-16 sm:grid-cols-2 lg:grid-cols-3"
|
|
>
|
|
{pinnedRepos.map((repo) => (
|
|
<Card as="li" key={repo.name}>
|
|
<h2 className="text-base font-semibold transition group-hover:text-indigo-500 text-zinc-800 dark:text-zinc-100">
|
|
<Card.Link href={repo.url}>{repo.name}</Card.Link>
|
|
</h2>
|
|
<Card.Description>{repo.description}</Card.Description>
|
|
<div
|
|
className="flex space-x-8 md:justify-between mt-6 items-center w-full group text-sm text-zinc-500 dark:text-zinc-400">
|
|
<p
|
|
className="relative z-10 flex items-center">
|
|
<span className="ml-2">{repo.primaryLanguage.name}</span>
|
|
<span
|
|
className="w-4 h-4 rounded-full order-first"
|
|
style={{backgroundColor: repo.primaryLanguage.color}}/>
|
|
</p>
|
|
<div className="flex space-x-4">
|
|
<p className="relative z-10 flex items-center">
|
|
<span className="ml-2 order-last">{numberFormat(repo.stargazerCount)}</span>
|
|
<SocialLink
|
|
href={repo.url}
|
|
ariaLabel={`Star ${repo.name} on GitHub`}
|
|
icon={StarIcon}
|
|
className={'w-5 h-5'}
|
|
/>
|
|
</p>
|
|
<p className="relative z-10 flex items-center">
|
|
<span className="ml-2 order-last">{numberFormat(repo.forkCount)}</span>
|
|
<SocialLink
|
|
href={repo.url}
|
|
ariaLabel={`Fork ${repo.name} on GitHub`}
|
|
icon={ForkIcon}
|
|
className={'w-5 h-5'}
|
|
/>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
))}
|
|
</ul>
|
|
</SimpleLayout>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export const getStaticProps: GetStaticProps = async () => {
|
|
return {
|
|
props: {
|
|
pinnedRepos: (await getPinnedRepos())
|
|
.sort((a, b) => b.stargazerCount - a.stargazerCount)
|
|
}
|
|
}
|
|
}
|