Interface LanguageLink

Represents a language link for switching between language versions of the site. These are shown on the bottom right of the footer

interface LanguageLink {
    href: string;
    label: string;
    langcode: "nl" | "fr" | "de" | "en";
    target?: string;
}

Properties

href: string

The URL of the language link.

label: string

The label of the language link.

langcode: "nl" | "fr" | "de" | "en"

The language code for the link (e.g., 'nl', 'fr', 'de', 'en').

target?: string

The target where the link should be opened (optional).