forked from UKSOURCE/hailearning.edu.vn
build ui header, footer, home page, about page
This commit is contained in:
37
app/about/types.ts
Normal file
37
app/about/types.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
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;
|
||||
};
|
||||
}[];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user