Add section titles and offer tiles to the "O Nas" page
- Introduced a new section title style with a decorative line above. - Added a "Kompleksowa oferta" section with detailed product offerings and images. - Implemented an "Oferta" tile layout for various materials (PVC, Drewno, Aluminium, etc.) with corresponding images and descriptions. - Created a "Pełna opieka" section highlighting customer support and services. - Added a "Technologie" section detailing advanced manufacturing technologies and processes. - Included a "Partnerzy i dostawcy" section listing key suppliers and partners. - Updated CSS styles to accommodate new sections and improve layout.
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -23,6 +23,37 @@ p {
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
position: relative;
|
||||
margin-bottom: 0;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
height: 1px;
|
||||
background: #878787;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: $cTxtBlack;
|
||||
font-size: 32px;
|
||||
font-family: $font3;
|
||||
font-weight: 500;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 0;
|
||||
text-transform: uppercase;
|
||||
padding-right: 30px;
|
||||
padding-top: 3px;
|
||||
background: $cWhite;
|
||||
}
|
||||
}
|
||||
|
||||
.box-1 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -273,36 +304,345 @@ p {
|
||||
}
|
||||
|
||||
.box-4 {
|
||||
margin-bottom: 160px;
|
||||
|
||||
._row {
|
||||
&-1 {
|
||||
._col {
|
||||
&-1 {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
height: 1px;
|
||||
background: #878787;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
.box-5 {
|
||||
padding-bottom: 75px;
|
||||
margin-bottom: 100px;
|
||||
border-bottom: 1px solid #878787;
|
||||
|
||||
h2 {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: $cTxtBlack;
|
||||
font-size: 32px;
|
||||
._row {
|
||||
&-1 {
|
||||
margin-bottom: 70px;
|
||||
}
|
||||
&-2 {
|
||||
width: 100%;
|
||||
max-width: 1070px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 70px;
|
||||
|
||||
._col {
|
||||
&-1 {
|
||||
p {
|
||||
color: #1d1d1e;
|
||||
font-size: 20px;
|
||||
font-family: $font3;
|
||||
font-weight: 500;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 0;
|
||||
text-transform: uppercase;
|
||||
padding-right: 30px;
|
||||
padding-top: 3px;
|
||||
background: $cWhite;
|
||||
font-weight: 300;
|
||||
|
||||
strong {
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-3 {
|
||||
._col {
|
||||
&-1 {
|
||||
.offer-tiles {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
column-gap: 30px;
|
||||
|
||||
.offer-tile {
|
||||
width: calc(100% / 5 - (30px - (30px / 5)));
|
||||
|
||||
img {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 70px;
|
||||
}
|
||||
h3 {
|
||||
color: #181c1d;
|
||||
font-size: 25px;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
letter-spacing: 2px;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0 18px;
|
||||
|
||||
li {
|
||||
color: #878787;
|
||||
font-size: 18px;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
letter-spacing: 2px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
|
||||
.offer-color-line {
|
||||
position: relative;
|
||||
display: block;
|
||||
height: 11px;
|
||||
width: 100%;
|
||||
max-width: 228px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 35px;
|
||||
|
||||
&-1 {
|
||||
background: #e2e2e2;
|
||||
}
|
||||
&-2 {
|
||||
background: #d5c1a9;
|
||||
}
|
||||
&-3 {
|
||||
background: linear-gradient(90deg, #d5c1a9 70%, #9ba9b7 70%);
|
||||
}
|
||||
&-4 {
|
||||
background: #9ba9b7;
|
||||
}
|
||||
&-5 {
|
||||
background: linear-gradient(90deg, #e2e2e2 70%, #9ba9b7 70%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.box-6 {
|
||||
position: relative;
|
||||
margin-bottom: 120px;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 60px;
|
||||
bottom: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: #f4f4f4;
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 70px;
|
||||
background-image: url('/upload/filemanager/icon/Group.svg');
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
width: 440px;
|
||||
height: 420px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
._row {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
&-1 {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
column-gap: 30px;
|
||||
align-items: center;
|
||||
|
||||
._col {
|
||||
width: 50%;
|
||||
|
||||
&-1 {
|
||||
h3 {
|
||||
color: #181c1d;
|
||||
font-size: 25px;
|
||||
font-family: $font3;
|
||||
letter-spacing: 2px;
|
||||
font-weight: 300;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 40px;
|
||||
|
||||
strong {
|
||||
font-weight: 800;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
p {
|
||||
color: #181c1d;
|
||||
font-size: 20px;
|
||||
font-family: $font3;
|
||||
font-weight: 300;
|
||||
max-width: 370px;
|
||||
}
|
||||
}
|
||||
|
||||
&-2 {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
row-gap: 11px;
|
||||
|
||||
li {
|
||||
padding: 19px 40px 14px;
|
||||
background: #2e2d2c;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
|
||||
|
||||
color: $cWhite;
|
||||
font-size: 18px;
|
||||
font-weight: 400;
|
||||
font-family: $font3;
|
||||
line-height: 26px;
|
||||
text-transform: uppercase;
|
||||
|
||||
strong {
|
||||
display: block;
|
||||
font-size: 25px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
color: $cTxtBlack;
|
||||
background: #ffed00;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.box-7 {
|
||||
margin-bottom: 145px;
|
||||
|
||||
._row {
|
||||
&-1 {
|
||||
margin-bottom: 70px;
|
||||
}
|
||||
&-2 {
|
||||
width: 100%;
|
||||
max-width: 1070px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 70px;
|
||||
|
||||
._col {
|
||||
&-1 {
|
||||
p {
|
||||
color: #1d1d1e;
|
||||
font-size: 20px;
|
||||
font-family: $font3;
|
||||
font-weight: 300;
|
||||
|
||||
strong {
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-3 {
|
||||
width: 100%;
|
||||
max-width: 1220px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 26px;
|
||||
|
||||
._col {
|
||||
&-1 {
|
||||
}
|
||||
|
||||
ul.img-tiles {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 26px;
|
||||
|
||||
li.img-tile {
|
||||
position: relative;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
p {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
color: $cWhite;
|
||||
font-size: 25px;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
letter-spacing: 2px;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
|
||||
strong {
|
||||
display: block;
|
||||
font-size: 35px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.box-8 {
|
||||
padding-bottom: 75px;
|
||||
margin-bottom: 100px;
|
||||
|
||||
._row {
|
||||
&-1 {
|
||||
margin-bottom: 70px;
|
||||
}
|
||||
&-2 {
|
||||
width: 100%;
|
||||
max-width: 1070px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 70px;
|
||||
|
||||
._col {
|
||||
&-1 {
|
||||
p {
|
||||
color: #1d1d1e;
|
||||
font-size: 20px;
|
||||
font-family: $font3;
|
||||
font-weight: 300;
|
||||
|
||||
strong {
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -86,7 +86,9 @@
|
||||
<div class="box-4">
|
||||
<div class="_row _row-1">
|
||||
<div class="_col _col-1">
|
||||
<h2>historia firmy vidok</h2>
|
||||
<h2 class="section-title">
|
||||
<span>historia firmy vidok</span>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="_row _row-2">
|
||||
@@ -95,5 +97,202 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="box-5">
|
||||
<div class="_row _row-1">
|
||||
<div class="_col _col-1">
|
||||
<h2 class="section-title">
|
||||
<span>kompleksowa oferta</span>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="_row _row-2">
|
||||
<div class="_col _col-1">
|
||||
<p><strong>VIDOK Sp. z o.o. to producent stolarki z drewna, PVC, oraz aluminium, działający od 1993 roku</strong>. Oferujemy szeroką gamę produktów: okna i drzwi PVC, PVC z nakładką aluminiową, drewniane, drewniane z nakładką aluminiową, konstrukcje aluminiowe, rolety zewnętrzne. </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="_row _row-3">
|
||||
<div class="_col _col-1">
|
||||
<div class="offer-tiles">
|
||||
<div class="offer-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/img---pvc.png" alt="">
|
||||
|
||||
<h3>pvc</h3>
|
||||
<div class="offer-color-line offer-color-line-1"></div>
|
||||
|
||||
<ul>
|
||||
<li>okna</li>
|
||||
<li>drzwi</li>
|
||||
<li>drzwi przesuwne</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="offer-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/img---drewno.png" alt="">
|
||||
|
||||
<h3>drewno</h3>
|
||||
<div class="offer-color-line offer-color-line-2"></div>
|
||||
|
||||
<ul>
|
||||
<li>okna</li>
|
||||
<li>drzwi</li>
|
||||
<li>drzwi przesuwne</li>
|
||||
<li>okiennice</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="offer-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/img---drewnoalu.png" alt="">
|
||||
|
||||
<h3>drewno+alu</h3>
|
||||
<div class="offer-color-line offer-color-line-3"></div>
|
||||
|
||||
<ul>
|
||||
<li>okna</li>
|
||||
<li>drzwi</li>
|
||||
<li>drzwi przesuwne</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="offer-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/img---aluminium.png" alt="">
|
||||
|
||||
<h3>aluminium</h3>
|
||||
<div class="offer-color-line offer-color-line-4"></div>
|
||||
|
||||
<ul>
|
||||
<li>okna</li>
|
||||
<li>drzwi</li>
|
||||
<li>drzwi przesuwne</li>
|
||||
<li>okiennice</li>
|
||||
<li>fasady</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="offer-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/img---pvcalu.png" alt="">
|
||||
|
||||
<h3>pvc+alu</h3>
|
||||
<div class="offer-color-line offer-color-line-5"></div>
|
||||
|
||||
<ul>
|
||||
<li>okna</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="box-6">
|
||||
<div class="container">
|
||||
<div class="_row _row-1">
|
||||
<div class="_col _col-1">
|
||||
<h3>
|
||||
<strong>pełna opieka</strong>
|
||||
na najwyższym poziomie
|
||||
</h3>
|
||||
<p>Już na etapie projektowania oferujemy wsparcie naszych ekspertów, którzy posiadają głęboką wiedzę techniczną i doświadczenie w branży budowlanej.</p>
|
||||
<p>Nasi eksperci są zawsze do Twojej dyspozycji, aby stawić czoła każdemu projektowi z osobistym zaangażowaniem i pasją.</p>
|
||||
</div>
|
||||
<div class="_col _col-2">
|
||||
<ul>
|
||||
<li>
|
||||
<strong>konsultacja</strong>
|
||||
dedykowany asystent klienta
|
||||
</li>
|
||||
<li>
|
||||
<strong>projekt</strong>
|
||||
inżynierowie z wieloletnim doświadczeniem
|
||||
</li>
|
||||
<li>
|
||||
<strong>administracja</strong>
|
||||
jasne zasady współpracy
|
||||
</li>
|
||||
<li>
|
||||
<strong>instalacja</strong>
|
||||
szkolenia
|
||||
</li>
|
||||
<li>
|
||||
<strong>marketing</strong>
|
||||
materiały reklamowe i promocyjne
|
||||
</li>
|
||||
<li>
|
||||
<strong>logistyka</strong>
|
||||
zawsze na czas
|
||||
</li>
|
||||
<li>
|
||||
<strong>serwis</strong>
|
||||
gwarancja
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="box-7">
|
||||
<div class="_row _row-1">
|
||||
<div class="_col _col-1">
|
||||
<h2 class="section-title">
|
||||
<span>technologie</span>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="_row _row-2">
|
||||
<div class="_col _col-1">
|
||||
<p>Wyjątkowy produkt wymaga zaawansowanej technologii. Sekret tkwi w sercu robotów i <strong>nowej generacji maszyn sterowanych numerycznie</strong>. Posiadamy najnowocześniejsze w Europie centrum obróbki drewna - <strong>Working Process, roboty Graf z technologią spawania szwu EVO</strong> do produkcji stolarki PVC oraz zaawansowane technologicznie maszyny i <strong>centrum tnące FOM Industrie LMX 650</strong> do produkcji stolarki aluminiowej. Wierzymy, że <strong>innowacyjność</strong> i wdrażanie <strong>zaawansowanych technologii</strong> w połączeniu z <strong>doświadczeniem załogi</strong> są podstawą długoterminowego sukcesu.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="_row _row-3">
|
||||
<div class="_col _col-1">
|
||||
<ul class="img-tiles">
|
||||
<li class="img-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/i1.jpg" alt="">
|
||||
<p>produkcja <strong>drewno</strong></p>
|
||||
</li>
|
||||
<li class="img-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/i5.jpg" alt="">
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="_col _col-2">
|
||||
<ul class="img-tiles">
|
||||
<li class="img-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/i4.jpg" alt="">
|
||||
</li>
|
||||
<li class="img-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/i2.jpg" alt="">
|
||||
<p>produkcja <strong>aluminium</strong></p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="_col _col-3">
|
||||
<ul class="img-tiles">
|
||||
<li class="img-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/i3.jpg" alt="">
|
||||
<p>produkcja <strong>pvc</strong></p>
|
||||
</li>
|
||||
<li class="img-tile">
|
||||
<img src="/upload/filemanager/Pages/O-nas/i6.jpg" alt="">
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="box-8">
|
||||
<div class="_row _row-1">
|
||||
<div class="_col _col-1">
|
||||
<h2 class="section-title">
|
||||
<span>partnerzy i dostawcy</span>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="_row _row-2">
|
||||
<div class="_col _col-1">
|
||||
<p>Marka współpracuje tylko z najlepszymi dostawcami solidnych materiałów i systemów okiennych:</p>
|
||||
<p><strong>VEKA, DECEUNINCK, KÖMMERLING, GEALAN, PRESSGLASS, SAINT-GOBAIN, PILKINGTON, ALRON, ALUPROF, CORTIZO, reynaers, SUYS, INEL, SOMFY, ROTO, WINK HAUS, SIEGENIA.</strong></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user