forked from UKSOURCE/hailearning.edu.vn
refactor ui and json data about
This commit is contained in:
@@ -1,37 +1,73 @@
|
||||
export interface AboutData {
|
||||
hero: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
breadcrumb: string[];
|
||||
backgroundImage: string;
|
||||
};
|
||||
intro: {
|
||||
heading: string;
|
||||
description: string;
|
||||
highlights: string[];
|
||||
image: string;
|
||||
};
|
||||
mission: {
|
||||
title: string;
|
||||
items: {
|
||||
label: string;
|
||||
description: string;
|
||||
}[];
|
||||
};
|
||||
stats: {
|
||||
label: string;
|
||||
value: number | string;
|
||||
}[];
|
||||
team: {
|
||||
title: string;
|
||||
members: {
|
||||
name: string;
|
||||
role: string;
|
||||
image: string;
|
||||
social: {
|
||||
facebook: string;
|
||||
linkedin: string;
|
||||
};
|
||||
}[];
|
||||
};
|
||||
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;
|
||||
}[];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user