writed project pages content

This commit is contained in:
2026-04-16 14:39:14 +02:00
parent 3a79088cce
commit fc2b481bd4
18 changed files with 104 additions and 83 deletions
+1 -1
View File
@@ -38,5 +38,5 @@ export function getAllProjects(): Project[] {
return getProjectSlugs()
.map((slug) => getProjectBySlug(slug))
.filter((project): project is Project => project !== null)
.sort((a, b) => b.priority - a.priority);
.sort((a, b) => a.priority - b.priority);
}
+2 -1
View File
@@ -1,4 +1,5 @@
export type ProjectFrontmatter = {
ready: boolean;
title: string;
priority: number;
category: string;
@@ -7,7 +8,7 @@ export type ProjectFrontmatter = {
technologies: string[];
preview1?: string;
preview2?: string;
website: string;
website?: string;
featured: boolean;
description: string;
dateLabel: string;