CompanyOverview.js 5.03 KB
import React from "react";
import { Col, Row } from "react-bootstrap";
import Heading from "@/components/Heading";
import Image from "next/image";

const CompanyOverview = () => {
  return (
    <>
      <section className="about-info-section company-overview-section">
        <div className="container">
          <Row className="my-5">
            <Col md={6}>
              <div className="luxury-items">
                <Image
                  width={594}
                  height={560}
                  src="/image/brands-overviews/mission.png"
                />
                <div className="title">Mission and values</div>
                <div className="info">
                  We place people and their well-being at the heart of
                  everything we do, creating timeless, handcrafted kitchens that
                  bring joy to everyday life. Through innovative design, quality
                  materials, and a deep commitment to sustainability, we
                  transform cooking into an extraordinary experience while
                  respecting our planet.
                </div>
              </div>
            </Col>
            <Col md={6}>
              <div className="luxury-items option02">
                <Image
                  width={570}
                  height={629}
                  src="/image/brands-overviews/certification.png"
                />
                <div className="title">Certifications</div>
                <div className="info">LEED, FSC, ISO 14001, F4 STARS</div>
              </div>
            </Col>
            <Col md={6}>
              <div className="luxury-items">
                <Image
                  width={594}
                  height={629}
                  src="/image/brands-overviews/awards.png"
                />
                <div className="title">Awards</div>
                <div className="info">
                  2025 Archello Product of the Year  Public vote  for New
                  Logica 2025 Archiproducts Design Awards | Archigraphica + Vela
                  Wall Unit 2025 iF Design Award | Architectural Scenarios 2025
                  iF Design Award GOLD | Artematica + New Logica
                </div>
              </div>
            </Col>
            <Col md={6}>
              <div className="luxury-items option02">
                <Image
                  width={594}
                  height={560}
                  src="/image/brands-overviews/symbol.png"
                />
                <div className="title">Symbol and Philosophy</div>
                <div className="info">
                  True well-being comes from living in harmony with our
                  environment. This philosophy is reflected in our logo,
                  inspired by an ancient symbol where the four petals represent
                  Fire, Water, Earth, and Air united in balance. At the centre
                  stands Man, symbolised by an unbroken circle, embodying
                  harmony itselfechoing the timeless ideals of proportion and
                  perfection seen in the Vitruvian Man.
                </div>
              </div>
            </Col>
            <Col md={6}>
              <div className="luxury-items">
                <Image
                  width={594}
                  height={629}
                  src="/image/brands-overviews/esg.png"
                />
                <div className="title">
                  Environmental, Social and Governance
                </div>
                <div className="info">
                  We are committed to sustainable development through
                  internationally recognized certifications and ESG principles
                  aligned with the United Nations 2030 Agenda. By integrating
                  environmental responsibility, social inclusion, and ethical
                  governance into our operations, we promote transparency,
                  protect natural resources, and foster a fair and responsible
                  workplace. Our goal is continuous improvement toward a more
                  sustainable and balanced future.
                </div>
              </div>
            </Col>
            <Col md={6}>
              <div className="luxury-items option02">
                <Image
                  width={594}
                  height={560}
                  src="/image/brands-overviews/history.png"
                />
                <div className="title">History</div>
                <div className="info">
                  We place people and their well-being at the heart of
                  everything we do, creating timeless, handcrafted kitchens that
                  bring joy to everyday life. Through innovative design, quality
                  materials, and a deep commitment to sustainability, we
                  transform cooking into an extraordinary experience while
                  respecting our planet.
                </div>
              </div>
            </Col>
          </Row>
        </div>
      </section>
    </>
  );
};

export default CompanyOverview;