generated from ita-social-projects/DevTemplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
114 additions
and
418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
183
FrontEnd/src/pages/LandingPage/LoginBanner/LoginBanner.css
This file was deleted.
Oops, something went wrong.
53 changes: 0 additions & 53 deletions
53
FrontEnd/src/pages/LandingPage/LoginBanner/LoginBanner.jsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.