--- import { useTranslations } from '@/i18n/utils' import { Image } from 'astro:assets' import logoSrc from '@/assets/logo.png' import type { z } from 'astro:content' import type { footerSchema } from '@/content.config' import { SocialMediaIcon } from './SocialMediaIcon' type Props = z.infer & { lang?: string } const { lang, socialMediaLinks } = Astro.props const t = useTranslations(lang) ---