feat: added tags on upload and view tweaked navbar

This commit is contained in:
Barf-Vader
2025-06-05 23:10:55 +01:00
committed by Gleb Koval
parent 022d9089e0
commit e625afd3b4
8 changed files with 196 additions and 15 deletions

View File

@@ -70,6 +70,7 @@ export type Database = {
description: string | null
id: string
location: string | null
tags: string[]
updated_at: string | null
}
Insert: {
@@ -78,6 +79,7 @@ export type Database = {
description?: string | null
id?: string
location?: string | null
tags?: string[]
updated_at?: string | null
}
Update: {
@@ -86,6 +88,7 @@ export type Database = {
description?: string | null
id?: string
location?: string | null
tags?: string[]
updated_at?: string | null
}
Relationships: []