/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / web-ui / src / types / home-content.ts
15 lines · 256 BCodeBlameHistory
3e91ba2add home pageJeremy Magland 1export interface HomeSection {
2 title: string;
3 description: string;
4 link: string;
5 linkText: string;
6 external?: boolean;
7}
9export interface HomeContent {
10 title: string;
11 description: string;
12 sections: {
13 [key: string]: HomeSection;
14 };
moveopenescclose