Skip to content

Commit

Permalink
Add grid spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
CannonLock committed Apr 22, 2024
1 parent d07e1d9 commit f3b3e25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/news/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default async function Page({ params }: { params: { slug: string[] } }) {
<Typography variant={"h2"}>News</Typography>
</Box>
<Container maxWidth={"xl"}>
<Grid container >
<Grid container spacing={1}>
{articles.map(article =>
<Grid key={article.slug.join("-")} item xs={12} md={6} lg={4}>
<ArticleCard href={`/news/${article.slug.join("/")}`} article={article}/>
Expand Down
2 changes: 1 addition & 1 deletion src/app/user-stories/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default async function Page({ params }: { params: { slug: string[] } }) {
<Typography variant={"h2"}>User Stories</Typography>
</Box>
<Container maxWidth={"xl"}>
<Grid container >
<Grid container spacing={1}>
{articles.map(article =>
<Grid key={article.slug.join("-")} item xs={12} md={6} lg={4}>
<ArticleCard key={article.slug.join("-")} href={`/user-stories/${article.slug.join("/")}`} article={article}/>
Expand Down

0 comments on commit f3b3e25

Please sign in to comment.