basic set-up; started work on projects page
This commit is contained in:
23
src/routes/projects/projectn5/devlog/posts.ts
Normal file
23
src/routes/projects/projectn5/devlog/posts.ts
Normal 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: "",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user