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:
@ -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>
|
||||
|
Reference in New Issue
Block a user