import { GetValues } from '../constants' export type NavLinkFooter = { text: string href: string } export type SponsorFooter = { text: string href: string image: string } export type ContactFooter = { email: string location: string phone: string reportLink: NavLinkFooter vat: string } export type SectionFooter = { title: string navLinks: NavLinkFooter[] } export const FooterVariantEnum = { DEFAULT: 'default', REVISED: 'revised', } as const export type FooterVariant = GetValues export type FooterSchema = { navLinks: NavLinkFooter[] sponsors: SponsorFooter[] sponsorsTitle?: string contact: ContactFooter sections: SectionFooter[] institutionName: string institutionName2: string followTitle?: string variant?: FooterVariant }