Added title in about us and updated apis

This commit is contained in:
2024-10-05 11:09:16 +08:00
parent 68378d55ac
commit f20685beea
29 changed files with 93 additions and 16 deletions

View File

@@ -150,6 +150,7 @@ export type AboutUssPublic = {
export type AboutUsPublic = {
index: number,
description: string,
title: string,
image: string,
id: string
}
@@ -157,12 +158,14 @@ export type AboutUsPublic = {
export type AboutUsCreate = {
index: number,
description: string,
title: string,
image: File,
}
export type AboutUsUpdate = {
index: number,
description: string,
title: string,
image?: File | undefined | null,
}