aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Blog.tsx
blob: 1b20e898dcbae7c8fde446f44c9953c59adfe28c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { Link } from "react-router-dom";
import CardLink from "../components/CardLink";

interface PostMeta {
  slug: string;
  title: string;
  date: string;
  excerpt: string;
  cover?: string;
}

const postFiles = import.meta.glob("../blog/*.md", { eager: true }) as Record<
  string,
  { attributes: Omit<PostMeta, "slug"> }
>;

const posts: PostMeta[] = Object.entries(postFiles)
  .map(([path, mod]) => ({
    slug: path.split("/").pop()!.replace(".md", ""),
    ...(mod.attributes as Omit<PostMeta, "slug">),
  }))
  .sort(
    (a, b) => new Date(b.date).getTime() - new Date(a.date).getTime()
  );

export default function Blog() {
  return (
    <section className="container mx-auto px-4 py-10">
      <h1 className="text-4xl font-bold mb-8">Blog</h1>
      
      {posts.map((post) => (
        <Link key={post.slug} to={`/blog/${post.slug}`} className="block">
          <CardLink
            title={post.title}
            body={post.excerpt}
            imgSrc={post.cover}
          />
        </Link>
      ))}
    </section>
  );
}