feat: health check seo
This commit is contained in:
@@ -1,6 +1,15 @@
|
||||
import apiClient from "@/api/client";
|
||||
import toast from "react-hot-toast";
|
||||
|
||||
export interface SeoData {
|
||||
seoTitle?: string;
|
||||
metaDescription?: string;
|
||||
focusKeyphrase?: string;
|
||||
tags?: string[];
|
||||
ogTitle?: string;
|
||||
ogDescription?: string;
|
||||
ogImage?: string;
|
||||
}
|
||||
export interface HealthPackage {
|
||||
id?: number;
|
||||
name: string;
|
||||
@@ -14,6 +23,7 @@ export interface HealthPackage {
|
||||
isActive: boolean;
|
||||
isFeatured: boolean;
|
||||
sortOrder: number;
|
||||
seo?: SeoData | null;
|
||||
category?: {
|
||||
name: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user