feat: add 88x31 retro badges in About this site window

This commit is contained in:
2026-03-31 02:35:06 +02:00
parent 6de2a1c9fa
commit 86d76d39ac
2 changed files with 85 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import { getSortedPostsData, PostMeta } from "../lib/posts";
import Link from "next/link";
import Window from "../components/window";
import Badges from "../components/badges";
function isNew(dateStr: string): boolean {
const postDate = new Date(dateStr);
@@ -62,6 +63,12 @@ export default function Home() {
)}
</Window>
</section>
<section>
<Window title="About this site">
<Badges />
</Window>
</section>
</div>
);
}