import { Shield } from 'lucide-react'; interface ChecksumProps { sha256: string; gpg: string; } export function Checksum({ sha256, gpg }: ChecksumProps) { return (

Verify Download

SHA256 Checksum

{sha256}

GPG Signature

{gpg}
); }