AboutInfoBrands.js
2.39 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
import React from 'react'
import { Col, Row } from 'react-bootstrap'
import Heading from "@/components/Heading";
import Image from 'next/image';
const AboutInfoBrands = () => {
return (
<>
<section className='about-section about-info-section'>
<div className='container'>
<Row className='text-center justify-content-center'>
<Col md={8}>
<Heading el="h2" heading="Where Lines Define Luxury" />
<p className='mb-3 gray-text'>The Arco Door embodies the essence of refined minimalism, where clean lines meet timeless elegance.
Crafted with precision, its sleek design brings harmony and sophistication to modern interiors. Every detail, from material selection to finish, reflects our commitment to quality and artistry.</p>
<p className='mb-3 gray-text'>The door is not just an entrance, but a seamless architectural element that elevates the entire space.
Its linear patterns create balance and rhythm, enhancing both functionality and aesthetic appeal.</p>
<p className='mb-3 gray-text'>Perfect for contemporary homes and luxury offices, it blends innovation with enduring style.
The Linéa Door transforms movement between spaces into a refined experience of design.
It is more than a door—it is a statement of modern luxury, crafted to inspire and endure.</p>
</Col>
</Row>
<Row className='my-5'>
<Col md={6}>
<div className='luxury-items'>
<Image width={806} height={560} src="/image/luxury01.png" />
<div className='info'>Its minimalist design language allows it to complement both modern and classic interiors with ease.
From subtle matte finishes to high-gloss elegance, every variation reflects refined craftsmanship.</div>
</div>
</Col>
<Col md={6}>
<div className='luxury-items option02'>
<Image width={570} height={629} src="/image/luxury02.png" />
<div className='info'>Its minimalist design language allows it to complement both modern and classic interiors with ease.
From subtle matte finishes to high-gloss elegance, every variation reflects refined craftsmanship.</div>
</div>
</Col>
</Row>
</div>
</section>
</>
)
}
export default AboutInfoBrands