14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
export default function MapVideotron() {
|
||
|
|
return (
|
||
|
|
<div className="mt-4 h-[400px] w-full rounded-lg overflow-hidden border">
|
||
|
|
<iframe
|
||
|
|
src="https://www.google.com/maps?q=Jakarta&output=embed"
|
||
|
|
className="w-full h-full border-0"
|
||
|
|
loading="lazy"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|