Skip to content

Commit

Permalink
app to develop
Browse files Browse the repository at this point in the history
  • Loading branch information
romanmyko committed Nov 1, 2024
2 parents 66d3ccf + 42b05aa commit 120d0f0
Show file tree
Hide file tree
Showing 9 changed files with 114 additions and 418 deletions.
9 changes: 5 additions & 4 deletions FrontEnd/src/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,19 @@
/* main pages About block*/
--about-text-font-color: #292E32;
--about-text-background-color: #FFF;

--about-as-font-color: #FFF;
--about-as-background-color: #0B6C61;

--about-cards-font-color: #292E32;
--about-cards-background-color: #F0F1F3;
--about-cards-background-content-color: #FFF;

/* main pages Banner block*/
--banner-main-font-color: #000;
--banner-main-dark-color: #1F9A7C;

/* main pages JoinUs block*/
--join-us-batton-color: black;
--join-us-main-color: #B4D27A;
--join-us-font-color: black;
--join-us-batton-text-color: white;
/* CompanyCard */
--companies-card-text-color: #292e32;
--companies-card-box-shadow: rgba(65, 64, 69, 0.2);
Expand Down
25 changes: 25 additions & 0 deletions FrontEnd/src/pages/LandingPage/JoinUs/JoinUs.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import css from './JoinUs.module.css';
import { Link } from 'react-router-dom';

const JoinUs = () => {
return (
<div className={css['join-us']}>
<div className={css['join-us__content']}>
<h2 className={css['join-us__text']}>
Майданчик для тих, хто втілює свої ідеї в життя
</h2>
<div className={css['join-us__button']}>
<Link
className={css['join-us__button-text']}
to="/sign-up"
alt="долучитись до спільноти"
>
Долучитися
</Link>
</div>
</div>
</div>
);
};

export default JoinUs;
71 changes: 71 additions & 0 deletions FrontEnd/src/pages/LandingPage/JoinUs/JoinUs.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
.join-us {
display: flex;
background: var(--join-us-main-color);
width: 100vw;
justify-content: center;
}

.join-us__content {
display: flex;
flex-direction: column;
justify-content: center;
width: 365px;
height: 208px;
gap: 24px;
}


.join-us__text {
color: var(--join-us-font-color, black);
font-feature-settings: 'calt' off;
font-family: var(--font-main);
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 28.8px;
letter-spacing: 0.24px;
text-align: center;
}

.join-us__button {
display: flex;
justify-content: center;
}

.join-us__button-text {
display: flex;
justify-content: center;
align-items: center;
color: var(--join-us-batton-text-color, white);
font-feature-settings: 'calt' off;
font-family: var(--font-main);
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 20px;
letter-spacing: -0.16px;
text-decoration: none;
text-align: center;
width: 170px;
height: 46px;
background: var(--join-us-batton-color, black);
border-radius: 4px;
}

@media only screen and (min-width: 768px) {
.join-us__content {
width: 694px;
height: 262px;
}

.join-us__text {
font-size: 40px;
line-height: 48px;
}
}

@media only screen and (min-width: 1512px) {
.join-us__content {
height: 326px;
}
}
183 changes: 0 additions & 183 deletions FrontEnd/src/pages/LandingPage/LoginBanner/LoginBanner.css

This file was deleted.

53 changes: 0 additions & 53 deletions FrontEnd/src/pages/LandingPage/LoginBanner/LoginBanner.jsx

This file was deleted.

Loading

0 comments on commit 120d0f0

Please sign in to comment.