forked from UKSOURCE/hailearning.edu.vn
74 lines
1.6 KiB
TypeScript
74 lines
1.6 KiB
TypeScript
export interface AboutData {
|
|
hero: {
|
|
title: string;
|
|
subtitle: string;
|
|
breadcrumb: string[];
|
|
backgroundImage: string;
|
|
};
|
|
intro: {
|
|
subheading: string;
|
|
heading: string;
|
|
description: string;
|
|
image: string;
|
|
};
|
|
mission: {
|
|
subheading: string;
|
|
heading: string;
|
|
description: string;
|
|
images: {
|
|
main: string;
|
|
secondary: string;
|
|
bgShape: string;
|
|
planeShape: string;
|
|
topShape: string;
|
|
globeShape: string;
|
|
};
|
|
items: {
|
|
icon: string;
|
|
label: string;
|
|
description: string;
|
|
}[];
|
|
features: string[];
|
|
ctaButton: {
|
|
label: string;
|
|
href: string;
|
|
};
|
|
};
|
|
features: {
|
|
backgroundImage: string;
|
|
subheading: string;
|
|
heading: string;
|
|
description: string;
|
|
image: string;
|
|
items: {
|
|
icon: string;
|
|
title: string;
|
|
description: string;
|
|
}[];
|
|
ctaButton: {
|
|
label: string;
|
|
href: string;
|
|
};
|
|
};
|
|
news: {
|
|
subheading: string;
|
|
heading: string;
|
|
ctaButton: {
|
|
label: string;
|
|
href: string;
|
|
};
|
|
items: {
|
|
title: string;
|
|
category: string;
|
|
date: string;
|
|
comments: number;
|
|
author: {
|
|
name: string;
|
|
avatar: string;
|
|
};
|
|
link: string;
|
|
thumbnail: string;
|
|
}[];
|
|
};
|
|
}
|