Working on home page

This commit is contained in:
2024-08-22 16:14:29 +02:00
parent 30b734ca8e
commit e56c8bb1af
30 changed files with 1116 additions and 1495 deletions

View File

15
types/types.ts Normal file
View File

@@ -0,0 +1,15 @@
import type { ParsedContent } from '@nuxt/content'
export interface AppType extends ParsedContent {
name: string
nuxt?: string
url: string
icon: string
color: string
tags: Tag[]
}
export interface Tag {
name: string
color: string
}