import "./index.css" import { Title, Meta, Link } from "@solidjs/meta" import { Header } from "~/component/header" import { Footer } from "~/component/footer" import { IconCopy, IconCheck } from "~/component/icon" import desktopAppIcon from "../../asset/lander/opencode-desktop-icon.png" import { Legal } from "~/component/legal" import { config } from "~/config" function CopyStatus() { return ( ) } export default function Download() { const handleCopyClick = (command: string) => (event: Event) => { const button = event.currentTarget as HTMLButtonElement navigator.clipboard.writeText(command) button.setAttribute("data-copied", "") setTimeout(() => { button.removeAttribute("data-copied") }, 1500) } return (
OpenCode | Download
OpenCode Desktop

Download OpenCode

Available in Beta for macOS, Windows, and Linux

OpenCode CLI
OpenCode Desktop (Beta)
macOS (Apple Silicon)
Download
macOS (Intel)
Download
Windows (x64)
Download
Windows (Arm)
Download
OpenCode Extensions
VS Code
Install
Cursor
Install
Windsurf
Install
) }