Ship the final German and English copy, compose every route from shared page primitives, and cover claims, parity and contact briefing in tests. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
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<AppLocale, SiteContent> = {
|
|
de: SITE_CONTENT_DE,
|
|
en: SITE_CONTENT_EN,
|
|
};
|