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

24 lines
715 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: [
{
2023-05-04 00:47:08 +08:00
title: 'home.sectionOne.content.title[0]',
subtext: 'home.sectionOne.content.subtext[0]',
description: 'home.sectionOne.content.description[0]',
2023-04-27 13:58:47 +08:00
},
{
2023-05-04 00:47:08 +08:00
title: 'home.sectionOne.content.title[1]',
subtext: 'home.sectionOne.content.subtext[1]',
description: 'home.sectionOne.content.description[1]',
2023-04-27 13:58:47 +08:00
},
{
2023-05-04 00:47:08 +08:00
title: 'home.sectionOne.content.title[2]',
subtext: 'home.sectionOne.content.subtext[2]',
description: 'home.sectionOne.content.description[2]',
2023-04-27 13:58:47 +08:00
},
],
}
}