diff --git a/apps/website/src/lib/download-helper.ts b/apps/website/src/lib/download-helper.ts index ab8bdc5bf..018e33fe4 100644 --- a/apps/website/src/lib/download-helper.ts +++ b/apps/website/src/lib/download-helper.ts @@ -14,7 +14,10 @@ export function buildDesktopDownloadUrl(platform: Platform, format: string, arch export const downloadMatrix = { desktop: { windows: { - title: "Windows", + title: { + x64: "Windows 64-bit", + arm64: "Windows on ARM" + }, description: "Compatible with Windows 10 and 11.", downloads: { exe: { @@ -27,7 +30,10 @@ export const downloadMatrix = { } }, linux: { - title: "Linux", + title: { + x64: "Linux 64-bit", + arm64: "Linux on ARM" + }, description: "Runs on most major distributions.", downloads: { deb: { @@ -46,7 +52,10 @@ export const downloadMatrix = { } }, macos: { - title: "macOS", + title: { + x64: "macOS for Intel", + arm64: "macOS for Apple Silicon" + }, description: "Works on macOS Big Sur and up.", downloads: { dmg: { diff --git a/apps/website/src/routes/download/+page.svelte b/apps/website/src/routes/download/+page.svelte index 401188eba..607d5f7b5 100644 --- a/apps/website/src/routes/download/+page.svelte +++ b/apps/website/src/routes/download/+page.svelte @@ -33,7 +33,7 @@ {@const hoverColor = (platformId === "windows" ? "hover:bg-blue-700" : platformId === "linux" ? "hover:bg-violet-700" : "hover:bg-gray-900")}
-

{platform.title} ({architecture})

+

{platform.title[architecture]}

{platform.description}

{#if recommended}