AboutInfoBrands.js
1.37 KB
import React from 'react'
import { Col, Row } from 'react-bootstrap'
import Heading from "@/components/Heading";
import Image from 'next/image';
import Link from 'next/link';
const AboutInfoBrands = () => {
return (
<>
<section className='about-section about-info-section'>
<div className='container'>
<Row className='text-center justify-content-center'>
<Col md={10}>
<Heading el="h2" heading="Company" />
<p className='mb-3 gray-text'>Rimadesio produces systems for sub-dividing environments and for the architectural definition of interiors. Doors, sliding panels, shelving units, walk-in wardrobes and a collection of complementary furniture: an offer which is continuously increasing in size and which is constantly developing in its style. Linear and functional designs where the simplicity of a concept is elaborated through an exceptional level of technical competence. Rimadesio’s aim is to continue to develop its own design culture and productive technology in order to be able to offer functionally innovative ideas which are exclusive from an aesthetic point of view and can ensure maximum reliability over time.</p>
</Col>
</Row>
</div>
</section>
</>
)
}
export default AboutInfoBrands