import { ServerIcon, MapPinIcon, GlobeAltIcon, BuildingOfficeIcon } from '@heroicons/react/24/outline'; import { Header } from './Header'; import { InfoRow } from './Info'; import type { GeoData } from '@/utils/types'; export const PublicNetworkView = ({ data, domain }: { data: GeoData, domain: string }) => { return (
); };