import { LinkIcon, ServerIcon, IdentificationIcon } from '@heroicons/react/24/outline'; export default function ServerInfo({ data }: { data: ServerData }) { if (data.isBrowserResource) { return (

Browser Resource

The requested document was obtained from the local computer

); } if (data.isLocal) { return (

Internal Network

IP Address

{data.ip}

); } return (

Host Information

IP Address

{data.ip}

Hostname

{data.hostname}

Org

{data.org}

Search on Censys

); }