blob: 435200f7aaed96e1f6a1383172e0254653046fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// This should only contain links to the mullvad website
// No links to other websites should be added
export const urls = {
purchase: 'https://mullvad.net/account/',
faq: 'https://mullvad.net/help/tag/mullvad-app/',
privacyGuide: 'https://mullvad.net/help/first-steps-towards-online-privacy/',
download: 'https://mullvad.net/download/vpn/',
removingOpenVpnBlog: 'https://mullvad.net/blog/removing-openvpn-15th-january-2026',
} as const;
type BaseUrl = (typeof urls)[keyof typeof urls];
type ExtendedBaseUrl = `${BaseUrl}${string}`;
export type Url = BaseUrl | ExtendedBaseUrl;
|