41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { getAllPostsMeta } from '@/lib/posts'
|
|
import { Post } from '@/components/common/Post'
|
|
|
|
export default function BlogIndex() {
|
|
const posts = getAllPostsMeta()
|
|
|
|
const rest = posts.slice(1)
|
|
const rows = []
|
|
for (let i = 0; i < rest.length; i += 2) {
|
|
rows.push(rest.slice(i, i + 2))
|
|
}
|
|
|
|
return (
|
|
<main className="max-w-3xl mx-auto px-4 py-8 lg:py-16">
|
|
<section>
|
|
{posts.length === 0 ? (
|
|
<div className="rounded-xl border border-border p-6 text-fg-dim">
|
|
No published posts yet.
|
|
</div>
|
|
) : (
|
|
<>
|
|
<Post post={posts[0]} isLatest />
|
|
<div className="border-t border-border my-6" aria-hidden="true"></div>
|
|
<div className="flex flex-col gap-8 mt-4">
|
|
{rows.map((row) => {
|
|
const rowHasImage = row.some((p) => p.coverImage)
|
|
return (
|
|
<div key={row[0].slug} className="grid grid-cols-1 gap-4 md:grid-cols-2">
|
|
{row.map((post) => (
|
|
<Post post={post} key={post.slug} showImageSlot={rowHasImage} />
|
|
))}
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
</>
|
|
)}
|
|
</section>
|
|
</main>
|
|
)
|
|
}
|