export interface TSEO {
    meta_title: string;
    meta_description: string;
    meta_keywords: string[];
    allow_index: number;
    og_type: string | null;
    og_title: string | null;
    og_description: string | null;
    og_image: string | null;
    og_image_width: number | null;
    og_image_height: number | null;
    og_url: string | null;
    og_locale: string | null;
    product_price_amount: number | null;
    product_price_currency: string | null;
    product_availability: number;
    product_brand: string | null;
    product_condition: string | null;
    product_category_id: number | null;
    twitter_card: string | null;
    twitter_title: string | null;
    twitter_description: string | null;
    twitter_image: string | null;
}

export const defaultSEO: TSEO = {
    meta_title: "",
    meta_description: "",
    meta_keywords: [],
    allow_index: 1,
    og_type: null,
    og_title: null,
    og_description: null,
    og_image: null,
    og_image_width: null,
    og_image_height: null,
    og_url: null,
    og_locale: null,
    product_price_amount: null,
    product_price_currency: null,
    product_availability: 1,
    product_brand: null,
    product_condition: null,
    product_category_id: null,
    twitter_card: null,
    twitter_title: null,
    twitter_description: null,
    twitter_image: null,
};
