Files
greywall-landing-page/components/getting-started.tsx
2026-03-13 11:17:51 -04:00

83 lines
2.6 KiB
TypeScript

'use client'
import { useState } from 'react'
import { Download, Copy, Check } from 'lucide-react'
const methods = [
{
label: 'Homebrew (macOS)',
cmd: 'brew tap greyhavenhq/tap\nbrew install greywall',
},
{
label: 'Linux / Mac',
cmd: 'curl -fsSL https://raw.githubusercontent.com/GreyhavenHQ/greywall/main/install.sh | sh',
},
{
label: 'Go install',
cmd: 'go install github.com/GreyhavenHQ/greywall/cmd/greywall@latest',
},
{
label: 'Build from source',
cmd: 'git clone https://github.com/GreyhavenHQ/greywall\ncd greywall\nmake setup && make build',
},
]
function CodeBlock({ cmd, label }: { cmd: string; label: string }) {
const [copied, setCopied] = useState(false)
function copy() {
navigator.clipboard.writeText(cmd)
setCopied(true)
setTimeout(() => setCopied(false), 2000)
}
return (
<div>
<div className="text-xs font-sans font-medium text-muted-foreground mb-2">{label}</div>
<div className="code-block px-4 sm:px-5 py-3.5 flex items-start justify-between gap-3">
<div className="overflow-x-auto min-w-0 flex-1 scrollbar-hide">
<pre className="font-mono text-xs sm:text-sm text-greyhaven-offwhite whitespace-pre">{cmd}</pre>
</div>
<button
onClick={copy}
className="shrink-0 p-1.5 rounded-md text-muted-foreground hover:text-foreground hover:bg-accent/30 transition-all mt-0.5"
title="Copy to clipboard"
>
{copied ? (
<Check className="h-4 w-4 text-primary" />
) : (
<Copy className="h-4 w-4" />
)}
</button>
</div>
</div>
)
}
export function GettingStarted() {
return (
<section id="getting-started" className="py-24 px-4 sm:px-6 border-t border-border/30">
<div className="mx-auto max-w-5xl text-center">
<div className="flex items-center justify-center gap-2 mb-4">
<Download className="h-4 w-4 text-primary" />
<span className="text-xs font-sans uppercase tracking-wider text-primary font-medium">
Getting started
</span>
</div>
<h2 className="font-serif text-3xl sm:text-4xl font-semibold tracking-tight mb-4">
Install in one command.
</h2>
<p className="text-muted-foreground font-serif text-lg leading-relaxed mb-10">
Wrap any agent and it runs sandboxed.
</p>
<div className="mx-auto max-w-2xl text-left space-y-6">
{methods.map((m) => (
<CodeBlock key={m.label} label={m.label} cmd={m.cmd} />
))}
</div>
</div>
</section>
)
}