1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 16:46:39 -04:00

set lastmod date of /notes to most recent post's

This commit is contained in:
2022-06-02 08:35:56 -04:00
parent 946cf87af4
commit 07a96917a4
4 changed files with 123 additions and 115 deletions

View File

@ -41,7 +41,7 @@ const GitHubLogo = styled(OctocatOcticon, {
fill: "$text",
});
const Projects = ({ repos }) => {
const Projects = ({ repos }: { repos: Repository[] }) => {
return (
<>
<NextSeo
@ -55,7 +55,7 @@ const Projects = ({ repos }) => {
<Content>
<Wrapper>
{repos.map((repo: Repository) => (
{repos.map((repo) => (
<Card key={repo.name} {...repo} />
))}
</Wrapper>