initial commit

This commit is contained in:
2025-01-23 11:16:33 -05:00
commit 25cabeb8df
57 changed files with 11214 additions and 0 deletions

8
src/data/posts.ts Normal file
View File

@@ -0,0 +1,8 @@
// @ts-expect-error
import Posts from "./posts.json";
import type { Post } from "~/types";
export const posts: Post[] = Posts.map((p: Post) => ({
...p,
date: new Date(p.date),
}));