first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:46:42 +03:00
commit 2a5b661443
202 changed files with 49770 additions and 0 deletions

44
frontend/types/setting.ts Normal file
View File

@@ -0,0 +1,44 @@
export interface Setting {
ID: number
CreatedAt: string
UpdatedAt: string
DeletedAt: string | null
title: string
meta_title: string
meta_description: string
phone: string
url: string
email: string
facebook: string
x: string
instagram: string
whatsapp: string
pinterest: string
linkedin: string
slogan: string
address: string
copyright: string
map_embed: string
w_logo: string
b_logo: string
is_active: boolean
w_width: number
w_height: number
w_quality: number
w_format: string
b_width: number
b_height: number
b_quality: number
b_format: string
}
export interface SettingResponse {
items: Setting[]
total: number
page: number
per_page: number
}
export interface SettingDetailResponse {
data: Setting
}