'use client'; import { Download, Laptop, Monitor, Terminal } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; import { DOWNLOAD_LINKS, LATEST_VERSION } from '@/lib/constants'; export function DownloadSection() { const downloads = [ { platform: 'Mac', icon: Laptop, link: DOWNLOAD_LINKS.macArm, description: 'macOS (Intel + Apple Silicon)', disabled: false, }, { platform: 'Windows', icon: Monitor, link: DOWNLOAD_LINKS.windows, description: 'Windows x64', disabled: false, }, { platform: 'Linux', icon: Terminal, link: DOWNLOAD_LINKS.linux, description: 'Linux AppImage', disabled: true, }, ]; return (
Latest Version
{LATEST_VERSION}
{description}