web sitesi yönetimi

This commit is contained in:
2026-01-25 01:46:12 +03:00
parent 6e56b1e75f
commit 0fe49b5c96
15 changed files with 575 additions and 155 deletions

6
types/cms.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface SiteContent {
key: string
value: string
type: 'text' | 'image_url' | 'html' | 'json' | 'long_text'
section: string
}