import { type AppLocale } from '../i18n/locale'; import { type SiteContent } from './content.contracts'; import { SITE_CONTENT_DE } from './de/site'; import { SITE_CONTENT_EN } from './en/site'; export const SITE_CONTENT_DATA: Record = { de: SITE_CONTENT_DE, en: SITE_CONTENT_EN, };