Articles section of the main page

This commit is contained in:
= 2024-12-06 00:37:52 +01:00
parent f77b96db25
commit 9562eb98dc
5 changed files with 101 additions and 27 deletions

View file

@ -4,4 +4,10 @@ interface Article {
content: string;
}
export type { Article };
interface ArticlePreview {
id: number;
title: string;
preview: string;
}
export type { Article, ArticlePreview };