'use client';
import React from "react";
import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';
import Image from "next/image";

const HiringBenefits:React.FC = () => {
    return (
        <>
            <Container >
                <Row className="benefits_hiring pt-70 pb-70 align-items-center">
                    <Col md={6}>
                        <Image src="/img/hire-resources/benifits.png" alt="Benefits Hiring" width={400} height={200} />
                    </Col>
                    <Col md={6}>
                        <h2 className="pageheader">We Are The Experts You Can Trust</h2>
                        <p>We tend to create and implement end-to-end e-commerce solutions that are directed towards our clients’ business websites.</p>
                        <p>Strict adherence to quality and dedication towards offering cost-efficient solutions, has set us to the enhanced levels of consistency.</p>
                        <p>Taking e-commerce web development as one of our most explored realms, we have moved towards offering best-in-class e-commerce web development services to the global clients.</p>
                    </Col>
                </Row>
            </Container>
        </>
    )
}


export default HiringBenefits;