15 lines
468 B
TypeScript
15 lines
468 B
TypeScript
// Free German course links — external resources (brand name + URL are data,
|
|
// identical across locales) so they live here, not in i18n messages.
|
|
export interface FreeCourseLink { name: string; url: string }
|
|
|
|
export const freeCourseLinks: FreeCourseLink[] = [
|
|
{
|
|
"name": "Deutsche Welle",
|
|
"url": "https://learngerman.dw.com/en"
|
|
},
|
|
{
|
|
"name": "VHS-Lernportal",
|
|
"url": "https://www.vhs-lernportal.de/wws/9.php#/wws/kursangebot-lernende.php"
|
|
}
|
|
]
|