landing
This commit is contained in:
114
src/pages/Landing/Landing.jsx
Normal file
114
src/pages/Landing/Landing.jsx
Normal file
@ -0,0 +1,114 @@
|
||||
import React from "react";
|
||||
import SVG from "react-inlinesvg";
|
||||
import { Link } from "react-router-dom";
|
||||
|
||||
import authIcon from 'assets/icons/authIcon.svg'
|
||||
import clue from "assets/icons/landingClue.svg"
|
||||
import cat from "assets/images/landingCat.png"
|
||||
import arrow from "assets/icons/arrows/arrowLanding.svg"
|
||||
import vk from "assets/icons/vkIcon.svg"
|
||||
import telegram from "assets/icons/telegramIcon.svg"
|
||||
import codeBg from "assets/images/landingBackgroundCode.svg"
|
||||
|
||||
import "./landing.scss";
|
||||
|
||||
export const Landing = () => {
|
||||
const opportunities = [
|
||||
{
|
||||
name: '<span>Аутстаффинг</span> сотрудников',
|
||||
class: 'outstaffing__employees',
|
||||
img: cat
|
||||
},
|
||||
{
|
||||
name: 'Модуль для видеоконференций',
|
||||
},
|
||||
{
|
||||
name: 'Система контроля версий GIT',
|
||||
},
|
||||
{
|
||||
name: 'Управление задачами',
|
||||
},
|
||||
{
|
||||
name: 'Система для отчётности',
|
||||
},
|
||||
{
|
||||
name: 'Все наши предложения',
|
||||
class: 'outstaffing__offers',
|
||||
img: arrow
|
||||
}
|
||||
]
|
||||
const socials = [
|
||||
{
|
||||
img: vk,
|
||||
to: ''
|
||||
},
|
||||
{
|
||||
img: telegram,
|
||||
to: ''
|
||||
}
|
||||
]
|
||||
return (
|
||||
<section className="landing">
|
||||
<div className="landing__container">
|
||||
<div className="landing__head">
|
||||
<h2 className="head__logo">ITGUILD</h2>
|
||||
<Link className="head__signIn" to='/auth'>войти в систему</Link>
|
||||
<Link className="head__signUp" to='/auth'>
|
||||
<SVG src={authIcon} />
|
||||
авторизация
|
||||
</Link>
|
||||
</div>
|
||||
<div className="landing__info">
|
||||
<p className="info__title">
|
||||
<SVG className='code' src={codeBg} />
|
||||
<span>Экосистема</span> для диджитализации бизнеса
|
||||
</p>
|
||||
<div className="landing__background">
|
||||
<h3>ITGuild</h3>
|
||||
<SVG className='clue' src={clue} />
|
||||
<SVG className='code' src={codeBg} />
|
||||
</div>
|
||||
<div className="info__block">
|
||||
<p>
|
||||
Подберем и документально оформим IT-специалистов, после чего передадим исполнителей под ваше руководство.
|
||||
<br/><br/>
|
||||
<span>Вы получаете полное управление над сотрудниками,</span> имея возможность контролировать и заменять IT штат.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="landing__opportunities">
|
||||
{opportunities.map((opportunity, index) => {
|
||||
return <div className={opportunity.class ? opportunity.class : 'landing__opportunity'} key={index}>
|
||||
{opportunity.class ?
|
||||
<div>
|
||||
<p dangerouslySetInnerHTML={{__html:opportunity.name}}/>
|
||||
{opportunity.img ? <img src={opportunity.img} alt='img' /> : ''}
|
||||
</div> :
|
||||
<p>{opportunity.name}</p>
|
||||
}
|
||||
</div>
|
||||
})
|
||||
}
|
||||
</div>
|
||||
<div className="landing__footer">
|
||||
<div className="footer__links">
|
||||
<div className="footer__socials">
|
||||
{socials.map((social, index) => {
|
||||
return <Link to={social.to} key={index}><SVG src={social.img} /></Link>
|
||||
})}
|
||||
</div>
|
||||
<Link className='footer__invite' to='/auth'>Присоединиться к команде</Link>
|
||||
</div>
|
||||
<div className="footer__info">
|
||||
<p>
|
||||
office@itguild.info
|
||||
</p>
|
||||
<p>
|
||||
© 2024 - Outstaffing. Все права защищены
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
288
src/pages/Landing/landing.scss
Normal file
288
src/pages/Landing/landing.scss
Normal file
@ -0,0 +1,288 @@
|
||||
.landing {
|
||||
background: #EEEEEE;
|
||||
height: 100vh;
|
||||
padding: 20px 0;
|
||||
font-family: "GT Eesti Pro Display";
|
||||
|
||||
&__container {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
&__head {
|
||||
display: flex;
|
||||
column-gap: 35px;
|
||||
align-items: center;
|
||||
|
||||
.head {
|
||||
&__logo {
|
||||
margin-bottom: 0;
|
||||
color: rgba(74, 74, 74, 1);
|
||||
font-size: 35px;
|
||||
font-weight: 900;
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
background: rgba(167, 202, 96, 1);
|
||||
width: 31px;
|
||||
height: 31px;
|
||||
border-radius: 50px;
|
||||
left: 39%;
|
||||
top: -35px;
|
||||
}
|
||||
}
|
||||
|
||||
&__signIn {
|
||||
padding: 12px 30px 15px;
|
||||
color: rgba(30, 30, 30, 1);
|
||||
font-size: 13px;
|
||||
background: rgba(167, 202, 96, 1);
|
||||
font-weight: 400;
|
||||
border-radius: 32px;
|
||||
}
|
||||
|
||||
&__signUp {
|
||||
display: flex;
|
||||
column-gap: 8px;
|
||||
align-items: center;
|
||||
color: rgba(131, 131, 131, 1);
|
||||
font-weight: 400;
|
||||
font-size: 13px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 75px;
|
||||
column-gap: 45px;
|
||||
|
||||
|
||||
.info {
|
||||
&__title {
|
||||
font-weight: 900;
|
||||
font-size: 49px;
|
||||
color: #4A4A4A;
|
||||
max-width: 444px;
|
||||
line-height: 1;
|
||||
position: relative;
|
||||
|
||||
.code {
|
||||
position: absolute;
|
||||
left: -260px;
|
||||
top: -55px;
|
||||
}
|
||||
|
||||
span {
|
||||
color: #A7CA60;
|
||||
}
|
||||
}
|
||||
|
||||
&__block {
|
||||
backdrop-filter: blur(8.699999809265137px);
|
||||
box-shadow: 10px 9px 14px 0 rgba(0, 0, 0, 0.03);
|
||||
background: linear-gradient(137deg, rgba(255, 255, 255, 0.34) 0%, rgba(239, 239, 239, 0.34) 100%);
|
||||
border: 0.5px solid;
|
||||
border-image-source: linear-gradient(137.79deg, #FFFFFF 9.15%, #F4F4F4 76.22%);
|
||||
border-radius: 8px;
|
||||
padding: 59px 89px 68px 102px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
p {
|
||||
font-weight: 250;
|
||||
font-size: 14px;
|
||||
line-height: 137%;
|
||||
color: #4a4a4a;
|
||||
|
||||
span {
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__background {
|
||||
position: absolute;
|
||||
right: -200px;
|
||||
top: -100px;
|
||||
h3 {
|
||||
font-family: 'Geraspoheko';
|
||||
color: rgba(255, 255, 255, 1);
|
||||
font-size: 343px;
|
||||
font-weight: 400;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.clue {
|
||||
width: 130px;
|
||||
height: 120px;
|
||||
top: 165px;
|
||||
position: absolute;
|
||||
right: 147px;
|
||||
}
|
||||
|
||||
.code {
|
||||
position: absolute;
|
||||
width: 360px;
|
||||
height: 134px;
|
||||
right: -110px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 82px;
|
||||
height: 82px;
|
||||
border-radius: 50px;
|
||||
background: rgba(167, 202, 96, 0.8);
|
||||
right: 160px;
|
||||
bottom: -75px;
|
||||
}
|
||||
}
|
||||
|
||||
&__opportunities {
|
||||
margin-top: 120px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
|
||||
}
|
||||
|
||||
&__opportunity {
|
||||
padding: 40px 60px;
|
||||
|
||||
p {
|
||||
font-weight: 500;
|
||||
font-size: 20px;
|
||||
line-height: 107%;
|
||||
color: rgba(131, 131, 131, 1);
|
||||
}
|
||||
}
|
||||
|
||||
&__opportunity:nth-child(-n+3) {
|
||||
border-bottom: 1px solid rgba(245, 245, 245, 1);
|
||||
}
|
||||
|
||||
&__opportunity:nth-child(-n+2) {
|
||||
border-right: 1px solid rgba(245, 245, 245, 1);
|
||||
}
|
||||
|
||||
&__opportunity:nth-child(4) {
|
||||
border-right: 1px solid rgba(245, 245, 245, 1);
|
||||
}
|
||||
|
||||
&__opportunity:nth-child(5) {
|
||||
border-right: 1px solid rgba(245, 245, 245, 1);
|
||||
}
|
||||
|
||||
.outstaffing__employees {
|
||||
padding: 16px 12px 14px 2px;
|
||||
border-right: 1px solid rgba(245, 245, 245, 1);
|
||||
border-bottom: 1px solid rgba(245, 245, 245, 1);
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
background: linear-gradient(95.54deg, #FFFFFF 5.13%, #EEEEEE 97.48%);
|
||||
border-radius: 5px;
|
||||
padding: 24px 0px 25px 33px;
|
||||
height: 100%;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
|
||||
p {
|
||||
font-weight: 700;
|
||||
font-size: 20px;
|
||||
line-height: 21.4px;
|
||||
color: rgba(74, 74, 74, 1);
|
||||
max-width: 135px;
|
||||
|
||||
span {
|
||||
color: rgba(167, 202, 96, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
position: absolute;
|
||||
right: -50px;
|
||||
bottom: -15px;
|
||||
}
|
||||
}
|
||||
|
||||
.outstaffing__offers {
|
||||
padding: 10px 0 25px 10px;
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
background: rgba(255, 255, 255, 1);
|
||||
border-radius: 5px;
|
||||
height: 91px;
|
||||
padding: 24px 35px 24px 42px;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
p {
|
||||
color: rgba(167, 202, 96, 1);
|
||||
font-weight: 500;
|
||||
font-size: 20px;
|
||||
line-height: 21.4px;
|
||||
max-width: 215px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 27px;
|
||||
height: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__footer {
|
||||
margin-top: auto;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.footer {
|
||||
display: flex;
|
||||
&__links {
|
||||
display: flex;
|
||||
column-gap: 23px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
&__socials {
|
||||
display: flex;
|
||||
column-gap: 16px;
|
||||
}
|
||||
|
||||
&__invite {
|
||||
color: rgba(159, 159, 159, 1);
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
letter-spacing: 0.01em;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
&__info {
|
||||
display: flex;
|
||||
column-gap: 100px;
|
||||
align-items: center;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
letter-spacing: 0.01em;
|
||||
color: rgba(159, 159, 159, 1);
|
||||
|
||||
p:first-child {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user