2f82381Update benchmark results from 2025-07-24 16:44:35 [skip ci]GitHub Actions Bot 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 };
15}