forked from Transparency/kgroad-frontend2
18 lines
587 B
TypeScript
18 lines
587 B
TypeScript
import { useTranslations } from "next-intl";
|
|
|
|
export const LINKS = () => {
|
|
const t = useTranslations("navigation");
|
|
|
|
const LINKS = [
|
|
{ id: 1, pagename: t("home"), pathname: "/" },
|
|
{ id: 2, pagename: t("about_us"), pathname: "/about-us" },
|
|
{ id: 3, pagename: t("privacy"), pathname: "/privacy" },
|
|
{ id: 3, pagename: t("support"), pathname: "/support" },
|
|
{ id: 4, pagename: t("statistics"), pathname: "/statistics" },
|
|
{ id: 5, pagename: t("news"), pathname: "/news" },
|
|
{ id: 6, pagename: t("volunteers"), pathname: "/volunteers" },
|
|
];
|
|
|
|
return LINKS;
|
|
};
|