my blog https://overreacted.io
53
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix keys

+2 -1
+2 -1
app/page.js
··· 29 29 <div className="relative -top-[10px] flex flex-col gap-8"> 30 30 {posts.map((post) => ( 31 31 <Link 32 + key={post.slug} 32 33 className="block py-4 hover:scale-[1.005]" 33 34 href={"/" + post.slug + "/"} 34 35 > 35 - <article key={post.slug}> 36 + <article> 36 37 <PostTitle post={post} /> 37 38 <PostMeta post={post} /> 38 39 <PostSubtitle post={post} />