CompanyOverview.js
4.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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 itself—echoing 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