update
|
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 225 KiB |
BIN
src/assets/images/main/projects/browser-window.png
Normal file
|
After Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 182 KiB |
|
Before Width: | Height: | Size: 308 KiB After Width: | Height: | Size: 366 KiB |
|
Before Width: | Height: | Size: 447 KiB After Width: | Height: | Size: 496 KiB |
|
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 246 KiB |
|
Before Width: | Height: | Size: 373 KiB After Width: | Height: | Size: 432 KiB |
|
|
@ -1,5 +1,5 @@
|
||||||
@mixin for-tablets {
|
@mixin for-tablets {
|
||||||
@media all and (max-width: 1024px) {
|
@media all and (max-width: 1200px) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@ const About = () => {
|
||||||
<Swiper
|
<Swiper
|
||||||
loop={false}
|
loop={false}
|
||||||
// centeredSlides={true}
|
// centeredSlides={true}
|
||||||
// slideToClickedSlide={true}
|
slideToClickedSlide={true}
|
||||||
spaceBetween={0}
|
spaceBetween={0}
|
||||||
slidesPerView={1}
|
slidesPerView={2}
|
||||||
onSlideChange={() => console.log("slide change")}
|
onSlideChange={() => console.log("slide change")}
|
||||||
onSwiper={(swiper) => console.log(swiper)}
|
onSwiper={(swiper) => console.log(swiper)}
|
||||||
className={'swiper10'}
|
className={'stats'}
|
||||||
>
|
>
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<h4>30+</h4>
|
<h4>30+</h4>
|
||||||
|
|
@ -42,7 +42,7 @@ const About = () => {
|
||||||
</SwiperSlide>
|
</SwiperSlide>
|
||||||
</Swiper>
|
</Swiper>
|
||||||
|
|
||||||
{/* <div className="swiper">
|
<div className="stats">
|
||||||
<div>
|
<div>
|
||||||
<h4>30+</h4>
|
<h4>30+</h4>
|
||||||
<p>Completed projects</p>
|
<p>Completed projects</p>
|
||||||
|
|
@ -55,7 +55,7 @@ const About = () => {
|
||||||
<h4>6+</h4>
|
<h4>6+</h4>
|
||||||
<p>Years experiance</p>
|
<p>Years experiance</p>
|
||||||
</div>
|
</div>
|
||||||
</div> */}
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,10 @@
|
||||||
@use "../../assets/stylesheets/abstracts/mixins" as *;
|
@use "../../assets/stylesheets/abstracts/mixins" as *;
|
||||||
|
|
||||||
.about-us {
|
.about-us {
|
||||||
|
margin-top: -80px;
|
||||||
> div {
|
> div {
|
||||||
&:first-child {
|
&:first-child {
|
||||||
grid-column: 1/7;
|
grid-column: 1/7;
|
||||||
img {
|
|
||||||
margin: -80px auto 0px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
|
|
@ -27,13 +25,28 @@
|
||||||
color: $color-text-secondary;
|
color: $color-text-secondary;
|
||||||
}
|
}
|
||||||
|
|
||||||
.swiper {
|
.stats {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
margin-top: 64px;
|
margin-top: 64px;
|
||||||
|
width: 100%;
|
||||||
.swiper-slide {
|
.swiper-slide {
|
||||||
width: 33%;
|
width: 33%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include for-mobile {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper {
|
||||||
|
display: none;
|
||||||
|
margin-left: -20px;
|
||||||
|
margin-right: -20px;
|
||||||
|
|
||||||
|
@include for-mobile {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include for-mobile {
|
@include for-mobile {
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,8 @@ const ContactForm = () => {
|
||||||
|
|
||||||
<div className="image">
|
<div className="image">
|
||||||
<img src={Dog} alt="cute dog in space" />
|
<img src={Dog} alt="cute dog in space" />
|
||||||
<img src={BluePlanet} alt="blue planet" class="planet blue" />
|
<img src={BluePlanet} alt="blue planet" className="planet blue" />
|
||||||
<img src={YellowPlanet} alt="yellow planet" class="planet yellow" />
|
<img src={YellowPlanet} alt="yellow planet" className="planet yellow" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="" className="container">
|
<form action="" className="container">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,17 @@
|
||||||
@use "../../assets/stylesheets/abstracts/mixins" as *;
|
@use "../../assets/stylesheets/abstracts/mixins" as *;
|
||||||
|
|
||||||
|
section.content {
|
||||||
|
.contact-form {
|
||||||
|
h2 {
|
||||||
|
margin-bottom: 0;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.contact-form {
|
.contact-form {
|
||||||
h2 {
|
h2 {
|
||||||
grid-column: 1/6;
|
grid-column: 1/6;
|
||||||
grid-row: 1/2;
|
grid-row: 1/2;
|
||||||
text-align: left !important;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
|
|
@ -22,6 +28,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include for-tablets {
|
||||||
|
form {
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.image {
|
.image {
|
||||||
grid-column: 6/13;
|
grid-column: 6/13;
|
||||||
grid-row: 1/3;
|
grid-row: 1/3;
|
||||||
|
|
@ -52,6 +64,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include for-tablets {
|
||||||
|
h2, form {
|
||||||
|
grid-column: 1/7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image {
|
||||||
|
grid-column: 8/13;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@include for-mobile {
|
@include for-mobile {
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,11 @@ footer {
|
||||||
display: block;
|
display: block;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
|
|
||||||
|
@include for-mobile {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
&.mobile {
|
&.mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,12 @@ header {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
|
z-index: 1000;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
|
||||||
.navigation {
|
.navigation {
|
||||||
a {
|
a {
|
||||||
|
|
@ -28,6 +34,7 @@ header {
|
||||||
width: 23px;
|
width: 23px;
|
||||||
height: 23px;
|
height: 23px;
|
||||||
display: none;
|
display: none;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
height: calc(100vh - 112px);
|
height: calc(100vh - 112px);
|
||||||
grid-template-rows: calc(100vh - 112px - 85px - 30px) min-content;
|
grid-template-rows: calc(100vh - 112px - 85px - 30px) min-content;
|
||||||
row-gap: unset;
|
row-gap: unset;
|
||||||
|
padding-top: 112px;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
grid-column: 1/8;
|
grid-column: 1/8;
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,13 @@ import Mockba from "../../assets/images/main/projects/mockba-modular.png";
|
||||||
import Pryatki from "../../assets/images/main/projects/pryatki.png";
|
import Pryatki from "../../assets/images/main/projects/pryatki.png";
|
||||||
import Sizzapp from "../../assets/images/main/projects/sizzapp.png";
|
import Sizzapp from "../../assets/images/main/projects/sizzapp.png";
|
||||||
import Trackpro from "../../assets/images/main/projects/trackpro.png";
|
import Trackpro from "../../assets/images/main/projects/trackpro.png";
|
||||||
|
import BrowserWrap from "../../assets/images/main/projects/browser-window.png";
|
||||||
|
|
||||||
import { Swiper, SwiperSlide } from "swiper/react";
|
import { Swiper, SwiperSlide } from "swiper/react";
|
||||||
import "swiper/css";
|
import "swiper/css";
|
||||||
import "swiper/css/effect-coverflow";
|
import "swiper/css/effect-coverflow";
|
||||||
import SwiperCore, { EffectCoverflow, Pagination } from "swiper";
|
import SwiperCore, { EffectCoverflow, Pagination } from "swiper";
|
||||||
|
import { Autoplay, Navigation } from 'swiper';
|
||||||
SwiperCore.use([EffectCoverflow, Pagination]);
|
SwiperCore.use([EffectCoverflow, Pagination]);
|
||||||
|
|
||||||
const ProjectsSwiper = () => {
|
const ProjectsSwiper = () => {
|
||||||
|
|
@ -18,11 +20,13 @@ const ProjectsSwiper = () => {
|
||||||
<Swiper
|
<Swiper
|
||||||
loop={true}
|
loop={true}
|
||||||
autoplay={{
|
autoplay={{
|
||||||
delay: 1000
|
delay: 1000,
|
||||||
|
disableOnInteraction: true,
|
||||||
}}
|
}}
|
||||||
speed={3000}
|
speed={1200}
|
||||||
effect={"coverflow"}
|
effect={"coverflow"}
|
||||||
coverflowEffect={{
|
coverflowEffect={{
|
||||||
|
scale: 1,
|
||||||
rotate: 0,
|
rotate: 0,
|
||||||
stretch: 100,
|
stretch: 100,
|
||||||
depth: 500,
|
depth: 500,
|
||||||
|
|
@ -32,20 +36,40 @@ const ProjectsSwiper = () => {
|
||||||
|
|
||||||
centeredSlides={true}
|
centeredSlides={true}
|
||||||
slideToClickedSlide={true}
|
slideToClickedSlide={true}
|
||||||
slidesPerView={"auto"}
|
// slidesPerView={"auto"}
|
||||||
onSlideChange={() => {
|
onSlideChange={() => {
|
||||||
console.log("slide change");
|
console.log("slide change");
|
||||||
|
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
breakpoints={{
|
||||||
|
0: { // when window >=0px - webflow mobile portriat
|
||||||
|
slidesPerView: 1,
|
||||||
|
// spaceBetween: 10,
|
||||||
|
},
|
||||||
|
// 767: { // when window >= 767px - webflow tablet
|
||||||
|
// slidesPerView: 2,
|
||||||
|
// // spaceBetween: -16,
|
||||||
|
// },
|
||||||
|
1200: { // when window >= 988px - webflow desktop
|
||||||
|
slidesPerView: 2,
|
||||||
|
coverflowEffect: {
|
||||||
|
// stretch: 500
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
|
||||||
onSwiper={
|
onSwiper={
|
||||||
(swiper) => {
|
(swiper) => {
|
||||||
console.log(swiper);
|
console.log(swiper);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
modules={[Autoplay]}
|
||||||
>
|
>
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<h2>Inflid</h2>
|
<h2>Inflid</h2>
|
||||||
<div className="img-wrap">
|
<div className="img-wrap">
|
||||||
|
<img src={BrowserWrap} alt="" className="img-overlay"/>
|
||||||
<img src={Inflid} alt="inflid" />
|
<img src={Inflid} alt="inflid" />
|
||||||
</div>
|
</div>
|
||||||
<div className="project-info">
|
<div className="project-info">
|
||||||
|
|
@ -60,6 +84,7 @@ const ProjectsSwiper = () => {
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<h2>Custom PC4U</h2>
|
<h2>Custom PC4U</h2>
|
||||||
<div className="img-wrap">
|
<div className="img-wrap">
|
||||||
|
<img src={BrowserWrap} alt="" className="img-overlay" />
|
||||||
<img src={CustomPC} alt="inflid" />
|
<img src={CustomPC} alt="inflid" />
|
||||||
</div>
|
</div>
|
||||||
<div className="project-info">
|
<div className="project-info">
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,20 @@
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.img-wrap {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.img-overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
display: flex;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
&:last-of-type {
|
&:last-of-type {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
||||||