62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
export type CmsHeroContent = {
|
|
id: string;
|
|
primary_title: string;
|
|
secondary_title: string;
|
|
description: string;
|
|
primary_cta: string;
|
|
secondary_cta_text: string;
|
|
images?: CmsHeroImage[];
|
|
};
|
|
|
|
export type CmsHeroImage = {
|
|
id: string;
|
|
hero_content_id: string;
|
|
image_path: string;
|
|
image_url: string;
|
|
};
|
|
|
|
export type CmsAboutContent = {
|
|
id: number;
|
|
primary_title: string;
|
|
secondary_title: string;
|
|
description: string;
|
|
primary_cta: string;
|
|
secondary_cta_text: string;
|
|
images?: { id: number; media_url: string; media_type?: string }[];
|
|
};
|
|
|
|
export type CmsProductContent = {
|
|
id: string;
|
|
primary_title: string;
|
|
secondary_title: string;
|
|
description: string;
|
|
link_url?: string;
|
|
images?: { id: string; image_url: string; image_path: string }[];
|
|
};
|
|
|
|
export type CmsServiceContent = {
|
|
id: number;
|
|
primary_title: string;
|
|
secondary_title: string;
|
|
description: string;
|
|
link_url?: string;
|
|
images?: { id: string; image_url: string; image_path: string }[];
|
|
};
|
|
|
|
export type CmsPartnerContent = {
|
|
id: string;
|
|
primary_title: string;
|
|
image_path: string;
|
|
image_url: string;
|
|
};
|
|
|
|
export type CmsPopupContent = {
|
|
id: number;
|
|
primary_title: string;
|
|
secondary_title: string;
|
|
description: string;
|
|
primary_cta: string;
|
|
secondary_cta_text: string;
|
|
images?: { id: number; media_url: string; media_path: string }[];
|
|
};
|