feat: add Admin layout

This commit is contained in:
2026-09-12 19:38:11 +07:00
parent 301063533a
commit 1c877de130
26 changed files with 742 additions and 1132 deletions
-5
View File
@@ -93,11 +93,6 @@ export async function getProject(id: string): Promise<Project> {
return data
}
export async function getProjectOverview(id: string) {
const { data } = await api.get(`/api/projects/${id}/overview`)
return data
}
export async function createProject(name: string, description?: string): Promise<Project> {
const { data } = await api.post<Project>('/api/projects', { name, description })
return data