Files
plagiat/src/widgets/footer/lib/data.ts
nabijonovdavronbek619@gmail.com 291375ce02 added multi language features
2026-03-31 19:45:21 +05:00

32 lines
733 B
TypeScript

const getSections = (t: (key: string) => string) => [
{
title: t('product'),
links: [
{ name: t('overview'), href: '#' },
{ name: t('pricing'), href: '#' },
{ name: t('marketplace'), href: '#' },
{ name: t('features'), href: '#' },
],
},
{
title: t('company'),
links: [
{ name: t('about'), href: '#' },
{ name: t('team'), href: '#' },
{ name: t('blog'), href: '#' },
{ name: t('careers'), href: '#' },
],
},
{
title: t('resources'),
links: [
{ name: t('help'), href: '#' },
{ name: t('sales'), href: '#' },
{ name: t('advertise'), href: '#' },
{ name: t('privacy'), href: '#' },
],
},
];
export { getSections };