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

24 lines
664 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',
subtext: 'home.setctionOne.one.subtext',
description: 'home.setctionOne.one.description',
},
{
title: 'home.sectionOne.two.title',
subtext: 'home.setctionOne.two.subtext',
description: 'home.setctionOne.two.description',
},
{
title: 'home.sectionOne.three.title',
subtext: 'home.setctionOne.three.subtext',
description: 'home.setctionOne.three.description',
},
],
}
}