'use client' import { useState } from 'react' import { Download, Copy, Check } from 'lucide-react' const installCmd = 'curl -fsSL https://raw.githubusercontent.com/GreyhavenHQ/greywall/main/install.sh | sh' export function GettingStarted() { const [copied, setCopied] = useState(false) function copy() { navigator.clipboard.writeText(installCmd) setCopied(true) setTimeout(() => setCopied(false), 2000) } return (
Getting started

One command. Full isolation.

A single Go binary. No containers, no daemon, no build step.

$ {installCmd}
) }