import React from "react"; import { useTranslate } from "@portal/hooks"; interface PageProps { description: string; link: string; } interface NavListProps { pages: PageProps[]; bottomBorder?: boolean; } export const NavList: React.FC = ({ pages, bottomBorder = true, }) => { const { translate } = useTranslate(); return ( ); };