CompanyOverview.js
5.65 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import React from "react";
import { Col, Row } from "react-bootstrap";
import Heading from "@/components/Heading";
import Image from "next/image";
import { cleanImage } from "../services/imageHandling";
const overviewData =[
{
title:"Headquarters",
subTitle:"",
description:"The company’s headquarters are organized over a 30,000 square meter area and is the core location of the strategic activities of the brand: from production to logistic and commercial management through to the diverse marketing and communication activities. Our headquarters, just as every other dimension in our organization, reflect a clear and precise vision. We are convinced that the quality of the work environment, the professionalism and team satisfaction are essential requirements for ensuring the quality of our products.",
image:"/image/brands/rimadesio/overview/01.png"
},
{
title:"R-Academy",
subTitle:"",
description: `Structured on different themes and levels of deepening, R-Academy represents a fundamental path to acquire the technical know-how made necessary by the high degree of company innovation and therefore to allow to grasp all the design potential of the collections. Located inside Giussano's showroom, the space dedicated to R-Academy is equipped with an integrated system, fundamental to express all the qualities of the proposal: from the different technical components to the exclusive mechanisms, from infographic panels to samples of the material collection in different ways and sizes.`,
image:"/image/brands/rimadesio/overview/02.png"
},
{
title:"Sustainability",
subTitle:"",
description:"Production of energy from renewable sources, circularity in the use of materials, containment of plastic and consumption in general, production efficiency, company welfare, support of the territory: these are the areas to which Rimadesio dedicates its daily commitment. A program of constant research and investment, an expression of a precise vision that considers quality to be a fundamental objective and a balance with the environment and people to be an essential condition.",
image:"/image/brands/rimadesio/overview/03.png"
},
{
title:"Ethical Code",
subTitle:"",
description:`<p>The Board of Directors of Rimadesio has approved the Governance and Control Manual that contains the Ethical Code of Conduct and the Organisational Rules applied inside the company.</p><p>Considering the new regulatory framework defined by Law Decree No. 231/2001, which defines the concept of Corporate Administrative Responsibility, the Board of Directors of Rimadesio has approved the Governance and Control Manual that contains the Ethical Code of Conduct and the Organisational Rules applied inside the company. By adopting the Code of Conduct, Rimadesio confirms that its guiding principle for all activities performed is compliance with the law and with all regulations, both Italian and foreign, in a framework of integrity and fairness. The Code defines ethical values that are common both to the company Rimadesio’s strategic decisions and to all its personnel in terms of individual responsibility.</p>`,
image:"/image/brands/rimadesio/overview/04.png"
},
{
title:"Health, Safety, Environment",
subTitle:"",
description:"Alongside its long-term focus on environmental issues, the company is dedicated to occupational health and safety. Rimadesio has always been committed to creating, maintaining and improving a healthy and safe work environment for its employees and any third parties involved.",
image:"/image/brands/rimadesio/overview/05.png"
},
{
title:"Data and Reports",
subTitle:"",
description:`
<p>Investments, workforce, distribution, turnover: every aspect of Rimadesio reality is represented through data and charts that allow to grasp in detail the constant and progressive evolution.</p>
<p><strong>Ebit -</strong> Earnings Before Interest and Taxes – is the result of the company’s operating performance from which the costs for depreciation and provisions are deducted. It indicates the income created by the company during its normal activity, also considering the impact of investments in capital goods or assets.</p>
<p><strong>Ebitda -</strong> Earnings Before Interest, Taxes, Depreciation and Amortization – is the metric used of the company’s operating performance and indicates, whether it is able to generate income in its normal activity, without considering investments and extraordinary, financial and tax.</p>
`,
image:"/image/brands/rimadesio/overview/06.png"
},
]
const CompanyOverview = () => {
return (
<section className=" brands-overview-section catalogues-sec sec_padd">
<div className="custom_container container">
{overviewData.map((item, index) => {
return (
<Row className="my-5" key={index}>
<Col md={6} className="mb-4">
<div className={``}>
<Image
width={868}
height={538}
src={item?.image}
alt={item?.title}
className="img-fluid"
/>
</div>
</Col>
{/* FIXED HERE */}
<Col md={6}>
<div className="title">{item?.title}</div>
<div className="sub-title">{item?.subTitle}</div>
<div
className="info"
dangerouslySetInnerHTML={{
__html: item?.description || "",
}}
/>
</Col>
</Row>
);
})}
</div>
</section>
);
};
export default CompanyOverview;