add more translation

This commit is contained in:
Kalidou Diagne
2024-01-16 15:05:00 +00:00
parent 9e49507e27
commit 738cb6a980
11 changed files with 178 additions and 137 deletions

View File

@@ -1,3 +1,4 @@
import { ProjectStatusType } from "@/lib/types"
import { LocaleTypes } from "@/app/i18n/settings"
export interface LangProps {
@@ -5,3 +6,21 @@ export interface LangProps {
lang: LocaleTypes
}
}
export type IThemeStatus = Partial<
Record<
ProjectStatusType,
{
label: string
icon: any
}
>
>
export type IThemesButton = Record<
string,
{
label: string
icon: any
}
>