diff options
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/index.tsx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/pages/index.tsx b/pages/index.tsx index f030f2c..279f1ad 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -60,7 +60,7 @@ export default function Home(props: {  						{index == 0 && <>  							<h2>Recent posts</h2>  							<div className='recentPosts'> -								{posts.posts.slice(0, 4).map(post => { +								{posts.posts.slice(0, 4).reverse().map(post => {  									return <PostCard post={post} />;  								})}  							</div> |