feat: featured projects

This commit is contained in:
Ben Allfree
2026-04-17 02:53:44 -07:00
parent 30705f504c
commit 3235864063
13 changed files with 195 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
export type FeaturedProject = {
title: string
subtitle?: string
url: string
highlighted?: boolean
logo: string
}
export type FeaturedProjectsFile = {
projects: FeaturedProject[]
}