Files
Portfolio/src/app/core/content/site-content.ts
Antonio Ledebuhr d954361724 content: replace scaffolding with bilingual pages and case studies
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>
2026-08-25 17:34:04 +02:00

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,
};