2025-06-02 18:06:15 +03:30
|
|
|
import routeFactory from '../routeFactory';
|
2025-05-31 16:41:12 +03:30
|
|
|
|
2025-06-07 16:31:52 +03:30
|
|
|
export function getQuickLinks(t: (key: string) => string, 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(),
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
}
|