Interface NavigationLink

Represents a navigation link in the footer. These are shown on the bottom center of the footer.

interface NavigationLink {
    href: string;
    label: string;
    target?: string;
}

Properties

Properties

href: string

The URL of the navigation link.

label: string

The label of the navigation link.

target?: string

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