InnerContent.js 1.1 KB
import React from "react";
import { Col, Row } from "react-bootstrap";
import GetInTouchForm from "./GetInTouchForm";

const InnerContent = () => {
  return (
    <>
      <section className="innercontent-section sec_padd">
        <div className="custom_container">
          <Row>
            <Col md={6}>
                <GetInTouchForm />
            </Col>
            <Col md={6}>
              <iframe
                src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3772.622369717272!2d72.82162147608882!3d18.992277882195175!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7ce8ba2a8a937%3A0xa2e451544551ba7a!2sRaghuvanshi%20Mills!5e0!3m2!1sen!2sin!4v1767959872758!5m2!1sen!2sin"
                width="100%"
                height="520"
                style={{ border: 0 }}
                allowFullScreen
                loading="lazy"
                referrerPolicy="no-referrer-when-downgrade"
                title=""
                className="contact-map"
              ></iframe>
            </Col>
          </Row>
        </div>
      </section>
    </>
  );
};

export default InnerContent;