basic set-up; started work on projects page

This commit is contained in:
2025-04-01 13:55:54 +02:00
parent 9ccd97120b
commit 29e812f80d
7 changed files with 170 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
export interface DevlogPost {
title: string;
date: Date;
imgSrc: string;
};
export const posts: DevlogPost[] = [
{
title: "title",
date: new Date("2025-01-01"),
imgSrc: "",
},
{
title: "titasdfle",
date: new Date("2025-02-03"),
imgSrc: "",
},
{
title: "titl435345e",
date: new Date("2025-01-01"),
imgSrc: "",
},
];