66 lines
3.8 KiB
JavaScript
66 lines
3.8 KiB
JavaScript
import Layout from "@/components/layout/Layout";
|
|
import Link from "next/link";
|
|
|
|
export default function Contact() {
|
|
return (
|
|
<>
|
|
<section className="contact-map-section">
|
|
{/*-============spacing==========-*/}
|
|
<div className="pd_top_90" />
|
|
{/*-============spacing==========-*/}
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col-lg-4 col-md-6 col-sm-12">
|
|
<section className="map-section">
|
|
<div className="map-outer">
|
|
<iframe
|
|
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3151.835434508135!2d144.95565131531697!3d-37.8172099797516!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6ad642af0f11fd81%3A0xf577a2a97f4953b2!2s55%20Main%20St%2C%20Melbourne%20VIC%2C%20Australia!5e0!3m2!1sen!2sau!4v1678975266976!5m2!1sen!2sau"
|
|
height={300}
|
|
style={{ border: 0, width: "100%" }}
|
|
allowFullScreen
|
|
loading="lazy"
|
|
referrerPolicy="no-referrer-when-downgrade"
|
|
/>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<div className="col-lg-4 col-md-6 col-sm-12">
|
|
<section className="map-section">
|
|
<div className="map-outer">
|
|
<iframe
|
|
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3311.835434508135!2d151.20929531531697!3d-33.8688190797516!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b12ae3c5c30e7d7%3A0xf577a2a97f4953b2!2s120%20Green%20Avenue%2C%20Sydney%20NSW%2C%20Australia!5e0!3m2!1sen!2sau!4v1678975266977!5m2!1sen!2sau"
|
|
height={300}
|
|
style={{ border: 0, width: "100%" }}
|
|
allowFullScreen
|
|
loading="lazy"
|
|
referrerPolicy="no-referrer-when-downgrade"
|
|
/>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<div className="col-lg-4 col-md-6 col-sm-12">
|
|
<section className="map-section">
|
|
<div className="map-outer">
|
|
<iframe
|
|
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3521.835434508135!2d153.02603411531697!3d-27.4701259797516!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b93724ef9e3b5e7%3A0xf577a2a97f4953b2!2s75%20Ocean%20View%20Rd%2C%20Brisbane%20QLD%2C%20Australia!5e0!3m2!1sen!2sau!4v1678975266978!5m2!1sen!2sau"
|
|
height={300}
|
|
style={{ border: 0, width: "100%" }}
|
|
allowFullScreen
|
|
loading="lazy"
|
|
referrerPolicy="no-referrer-when-downgrade"
|
|
/>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/*-============spacing==========-*/}
|
|
<div className="pd_bottom_90" />
|
|
{/*-============spacing==========-*/}
|
|
</section>
|
|
</>
|
|
);
|
|
}
|