Files
e2e 373b42a994
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled
chore: heygermany customer project
2026-07-11 10:06:51 +02:00

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"
}
]