24 lines
664 B
TypeScript
24 lines
664 B
TypeScript
|
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',
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
}
|