added all devlogs

This commit is contained in:
2025-04-04 10:37:25 +02:00
parent d43903bc1f
commit 8c0ee4b3af
36 changed files with 1589 additions and 31 deletions

View File

@@ -18,7 +18,7 @@
<h1 class="title">{title}</h1>
</div>
{#if subtitle}
<h1 class="subtitle">{subtitle}</h1>
<h1 class="subtitle">» {subtitle}</h1>
{/if}
<SeparatorLine />

93
src/lib/devlog-posts.ts Normal file
View File

@@ -0,0 +1,93 @@
export interface DevlogPost {
title: string;
subtitle: string;
date: number;
banner?: string;
};
export const posts: DevlogPost[] = [
{
title: "Refactoring",
subtitle: "2025-03-16",
date: 20250316,
banner: "fishmonger.webp",
},
{
title: "The Making of a Protagonist, Part III",
subtitle: "2025-02-03",
date: 20250203,
banner: "lauras-imposing.webp",
},
{
title: "The Making of a Protagonist, Part II",
subtitle: "2024-12-22",
date: 20241222,
banner: "laura-header.webp",
},
{
title: "The Making of a Protagonist, Part I",
subtitle: "2024-11-27",
date: 20241127,
banner: "hands.webp",
},
{
title: "Visual Update",
subtitle: "2024-11-03",
date: 20241103,
},
{
title: "Returnal Update",
subtitle: "2024-10-12",
date: 20241012,
},
{
title: "WHERE HAVE I BEEN?? Update",
subtitle: "2024-07-13",
date: 20240713,
},
{
title: "Behind-The-Scenes Update",
subtitle: "2024-04-01",
date: 20240401,
},
{
title: "Arena Update",
subtitle: "2024-03-24",
date: 20240324,
},
{
title: "2024-03-23",
subtitle: "",
date: 20240323,
},
{
title: "2024-03-12",
subtitle: "",
date: 20240312,
},
{
title: "2024-02-10",
subtitle: "",
date: 20240210,
},
{
title: "December 2023",
subtitle: "",
date: 202312,
},
{
title: "November 2023",
subtitle: "",
date: 202311,
},
{
title: "October 2023",
subtitle: "",
date: 202310,
},
{
title: "September 2023",
subtitle: "",
date: 202309,
},
];

View File

@@ -1 +0,0 @@
// place files you want to import through the `$lib` alias in this folder.