import { FieldDescription, FieldTitle, FormField, } from "@/components/download/form"; import { Platforms } from "@/components/download/types"; import { ny } from "@/lib/utils"; interface WindowsInstallerProps { flowIndex: number; platform: Platforms | null; selectedArchitecture: string; setSelectedWindowsDownloadType: (value: string) => void; selectedWindowsDownloadType: string; } export const WindowsInstaller = ({ flowIndex, platform, selectedArchitecture, setSelectedWindowsDownloadType, selectedWindowsDownloadType, }: WindowsInstallerProps) => { return ( = 2} > Download Zen for Windows {selectedArchitecture} Choose the type of download you want for Zen for Windows.
setSelectedWindowsDownloadType("installer")} className={ny( "mb-2 flex flex-1 cursor-pointer select-none flex-col items-center rounded-lg border bg-background p-5", selectedWindowsDownloadType === "installer" ? "border-blue-400" : "", )} >

🚀

Installer

Install Zen with a setup wizard

setSelectedWindowsDownloadType("portable")} className={ny( "mb-2 ml-10 flex flex-1 cursor-pointer select-none flex-col items-center rounded-lg border bg-background p-5", selectedWindowsDownloadType === "portable" ? "border-blue-400" : "", )} >

📦

Portable

Download Zen as a ZIP file

); };