switch from next to vue

This commit is contained in:
2026-02-06 01:11:09 +01:00
parent 1193ca3552
commit 43463bbe8f
71 changed files with 5380 additions and 5164 deletions
+16
View File
@@ -0,0 +1,16 @@
export type Entry = {
id: number
category: string | null
fi: string | null
en: string | null
sv: string | null
no: string | null
ru: string | null
de: string | null
updated_at: string | null
}
export type Language = {
code: keyof Pick<Entry, 'fi' | 'en' | 'sv' | 'no' | 'ru' | 'de'>
name: string
}