'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

Install in one command

Wrap any agent and it runs sandboxed.

$ {installCmd}
) }