Files
pasargad/src/assets/constants/footerMenu/quickLinks.const.ts
T

21 lines
430 B
TypeScript
Raw Normal View History

import routeFactory from '../routeFactory';
export function getQuickLinks(t: any, locale: string) {
const routes = routeFactory(t, locale);
return [
{
title: routes.home.title,
link: routes.home.route(),
},
{
title: routes.productCategories.title,
link: routes.productCategories.route(),
},
{
title: routes.projects.title,
link: routes.projects.route(),
},
];
}