import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card' import { Button } from '@/components/ui/button' import { Download, Monitor, Apple, Terminal, Shield, Cpu, HardDrive } from 'lucide-react' const platforms = [ { name: 'Windows', icon: Monitor, description: 'Windows 10/11 (64-bit)', filename: 'RemoteLink-Setup.exe', size: '45 MB', available: true, }, { name: 'macOS', icon: Apple, description: 'macOS 11+ (Apple Silicon & Intel)', filename: 'RemoteLink.dmg', size: '52 MB', available: true, }, { name: 'Linux', icon: Terminal, description: 'Ubuntu, Debian, Fedora, Arch', filename: 'remotelink-agent.AppImage', size: '48 MB', available: true, }, ] const features = [ { icon: Shield, title: 'Secure', description: 'End-to-end encryption for all connections', }, { icon: Cpu, title: 'Lightweight', description: 'Minimal system resource usage', }, { icon: HardDrive, title: 'Portable', description: 'No installation required on Windows', }, ] export default function DownloadPage() { return (

Download RemoteLink Agent

Install the agent on machines you want to control remotely. The agent runs in the background and enables secure connections.

{platforms.map((platform) => (
{platform.name} {platform.description}

{platform.filename}

{platform.size}

))}

Agent Features

{features.map((feature) => (

{feature.title}

{feature.description}

))}
Installation Instructions

Windows

  1. Download and run RemoteLink-Setup.exe
  2. Follow the installation wizard
  3. The agent will start automatically and appear in your system tray
  4. Click the tray icon to generate a session code

macOS

  1. Download and open RemoteLink.dmg
  2. Drag RemoteLink to your Applications folder
  3. Open RemoteLink from Applications
  4. Grant accessibility permissions when prompted

Linux

  1. Download the AppImage file
  2. Make it executable: chmod +x remotelink-agent.AppImage
  3. Run the AppImage
  4. The agent will appear in your system tray
) }