export interface NavigationItem {
    id: string;
    text: string;
    href: string;
    locale?: string | false;
    slug?: string;
}
