--- import { Icon } from 'astro-icon/components'; import { SITE } from 'astrowind:config'; import { getHomePermalink } from '~/utils/permalinks'; interface Link { text?: string; href?: string; ariaLabel?: string; icon?: string; } interface Links { title?: string; links: Array; } export interface Props { links: Array; secondaryLinks: Array; socialLinks: Array; footNote?: string; theme?: string; } const { socialLinks = [], secondaryLinks = [], links = [], footNote = '', theme = 'light' } = Astro.props; ---