Dotted World Map
A stylised dotted-continent world drawn in inline SVG, with labelled city pins and no tile server.
3 फ्रेमवर्कमध्यम
Address, email and phone on one side, a dotted map with a single pin on the other.
<div class="grid w-full items-stretch gap-6 rounded-2xl border border-gray-200 bg-white p-6 md:grid-cols-2 dark:border-gray-800 dark:bg-gray-950">
<div>
<h2 class="text-xl font-semibold text-gray-900 dark:text-gray-100">Visit us</h2>
<dl class="mt-4 space-y-3 text-sm">
<div>
<dt class="font-medium text-gray-500 dark:text-gray-400">Address</dt>
<dd class="mt-0.5 text-gray-900 dark:text-gray-100">Torstrasse 21, 10119 Berlin</dd>
</div>
<div>
<dt class="font-medium text-gray-500 dark:text-gray-400">Email</dt>
<dd class="mt-0.5"><a href="mailto:hi@example.com" class="rounded text-blue-700 underline-offset-2 hover:underline focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 dark:text-blue-400">hi@example.com</a></dd>
</div>
<div>
<dt class="font-medium text-gray-500 dark:text-gray-400">Phone</dt>
<dd class="mt-0.5"><a href="tel:+493012345678" class="rounded text-blue-700 underline-offset-2 hover:underline focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 dark:text-blue-400">+49 30 1234 5678</a></dd>
</div>
</dl>
</div>
<div class="relative aspect-[4/3] w-full overflow-hidden rounded-xl bg-gray-50 dark:bg-gray-900">
<svg aria-hidden="true" class="absolute inset-0 h-full w-full text-gray-300 dark:text-gray-700" preserveAspectRatio="xMidYMid slice">
<defs>
<pattern id="contact-dots" width="14" height="14" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="1.4" fill="currentColor" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#contact-dots)" />
</svg>
<button type="button" aria-label="Office location on map" style="left:50%;top:50%" class="absolute flex h-11 w-11 -translate-x-1/2 -translate-y-1/2 items-center justify-center rounded-full focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
<span class="h-4 w-4 rounded-full bg-blue-600 ring-4 ring-blue-500/25 dark:bg-blue-400"></span>
</button>
</div>
</div>| Prop | टाइप | डिफ़ॉल्ट | विवरण |
|---|---|---|---|
title | string | 'Visit us' | कार्ड की हेडिंग टेक्स्ट। |
address | string | - | Address |
email | string | - | साइन-इन किए गए खाते का ईमेल पता। |
phone | string | - | Phone |
className | string | - | रूट एलिमेंट पर मर्ज होने वाली अतिरिक्त क्लासेज़। |
Feed `address`, `email` and `phone`; the email and phone become real `mailto:`/`tel:` links with the phone stripped to digits for the `href`. The two columns collapse to one below `md`, keeping the contact details above the map.