refactor ui and json data about

This commit is contained in:
2026-02-02 22:29:31 +07:00
parent bf652a64b6
commit 1add9d4d9d
11 changed files with 344 additions and 410 deletions

View File

@@ -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;
}[];
};
}