"use client" import { useState } from "react" export default function Card() { const [copied, setCopied] = useState(false) const command = "ssh id.tunnl.live -p 2200 -R 443:localhost:8000" const copyToClipboard = () => { navigator.clipboard.writeText(command) setCopied(true) setTimeout(() => setCopied(false), 2000) } return (

Connect with a single command

{command}

This command creates a secure tunnel from our server to your localhost:8000

) }