"use client"; import { useState } from "react"; export default function CloneBox({ url }: { url: string }) { const [copied, setCopied] = useState(false); const cmd = `git clone ${url}`; return ( ); }