This commit is contained in:
Oliver Bryan
2025-09-30 11:48:41 +01:00
parent 7104d2262f
commit e4b4e2b10f
9 changed files with 61 additions and 10 deletions

View File

@@ -12,6 +12,7 @@ interface ProjectMetadata {
slug: string;
hidden: boolean;
image?: string;
tags?: string[];
}
interface AstroModule {
@@ -163,6 +164,7 @@ const projects: ProjectMetadata[] = Object.values(
slug={project.slug}
isDevMode={isDevMode}
isHidden={project.hidden}
tags={project.tags || []}
/>
))
}