add: first post, external posts, new comps

Add first post for monday, add external posts from other authors, add components for internal and external links
This commit is contained in:
webfussel 2025-07-11 09:13:06 +02:00
parent 427d9ae276
commit 0a481fee5e
19 changed files with 264 additions and 329 deletions

3
server/utils/filter.ts Normal file
View file

@ -0,0 +1,3 @@
import type { Post } from '../../shared/types/Blog'
export const filterBeforeFirstPost = (post: Post) => new Date(post.date) > new Date('2025-07-14')