TOPVERSE_Official/config/pages/home/use-section-one.ts

24 lines
658 B
TypeScript
Raw Normal View History

2023-04-27 13:58:47 +08:00
export function useSectionOne() {
return {
topic: 'home.sectionOne.topic',
description: 'home.sectionOne.description',
content: [
{
title: 'home.sectionOne.one.title',
2023-04-30 17:14:25 +08:00
subtext: 'home.sectionOne.one.subtext',
description: 'home.sectionOne.one.description',
2023-04-27 13:58:47 +08:00
},
{
title: 'home.sectionOne.two.title',
2023-04-30 17:14:25 +08:00
subtext: 'home.sectionOne.two.subtext',
description: 'home.sectionOne.two.description',
2023-04-27 13:58:47 +08:00
},
{
title: 'home.sectionOne.three.title',
2023-04-30 17:14:25 +08:00
subtext: 'home.sectionOne.three.subtext',
description: 'home.sectionOne.three.description',
2023-04-27 13:58:47 +08:00
},
],
}
}