export interface BlogsPageProps {
    data: {
        seo: {
            title: string;
            description: string;
            keywords: string;
            og_image: string;
        }
        breadcrumbs: BreadcrumbItem[];
        blogs: BlogBannerWithProps;
        live_booking: LiveBookingProps;

    }
}

// breadcrumbs 
export interface BreadcrumbItem {
    title: string;
    url: string;
}

//Blog lisitng page props (banner and post list )
export interface BlogBannerWithProps {
    heading: string;
    description: string;
    blog_cards: BlogCardProps[];
}

export interface BlogCardProps {
    id?: number;
    title: string;
    slug: string;
    featured_image: string;
    published_date: string;
    button_text: string
}

//Live Booking
export interface LiveBookingProps {
    title?: string;
    heading?: string;
    description?: string;
    cta?: string;
}