export interface Link {
    title: string;
    url: string;
    ariaCurrent: 'page' | false;
    class: string;
}
