TOPVERSE_Official/config/pages/home/use-carousel.ts

29 lines
758 B
TypeScript
Raw Normal View History

2023-04-27 13:58:47 +08:00
export function useCarousel() {
return [
{
title: 'home.carousel.one.topic',
description: 'home.carousel.one.description',
entry: 'home.carousel.one.entry',
img: '/imgs/1 (1).jpg',
},
{
title: 'home.carousel.two.topic',
description: 'home.carousel.two.description',
entry: 'home.carousel.two.entry',
img: '/imgs/1 (2).jpg',
},
{
title: 'home.carousel.third.topic',
description: 'home.carousel.third.description',
entry: 'home.carousel.third.entry',
img: '/imgs/1 (3).jpg',
},
{
title: 'home.carousel.four.topic',
description: 'home.carousel.four.description',
entry: 'home.carousel.four.entry',
img: '/imgs/1 (4).jpg',
},
]
}