docs: update import paths to legacy for consistency

- Revised documentation links to point to the legacy import paths across multiple files, ensuring uniformity in referencing legacy resources.
- This change enhances clarity and maintains consistency in the documentation structure.
This commit is contained in:
Marvin
2026-04-10 01:42:07 +02:00
parent 7f8070fe2a
commit a5a34940a1
12 changed files with 2 additions and 777 deletions

View File

@@ -1,18 +1,10 @@
import { de } from './de';
import { en } from './en';
import { es } from './es';
import { fr } from './fr';
import { ja } from './ja';
import { ru } from './ru';
import type { HomepageContent, LocaleKey } from './types';
const homepageByLocale: Record<LocaleKey, HomepageContent> = {
en,
de,
fr,
es,
ru,
ja,
};
export type { HomepageContent, LocaleKey } from './types';