-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<img width="688" alt="image" src="https://github.com/software-mansion/react-native-reanimated/assets/59940332/8af3df0d-bd69-4ef7-a546-d1f2b1cf661f"> We added `Hire us` section to help clients recognise and contact us directly from documentation's landing page. Additionally we expanded `README.md` by adding information about Discord and SWM.
- Loading branch information
1 parent
6cb1a66
commit a97685f
Showing
6 changed files
with
113 additions
and
2 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,29 @@ | ||
import React from 'react'; | ||
import HomepageButton from '../HomepageButton'; | ||
import styles from './styles.module.css'; | ||
|
||
const HireUsSection = () => { | ||
return ( | ||
<div className={styles.hireUsSectionWrapper}> | ||
<div className={styles.hireUsTitleContainer}> | ||
<h2>We are Software Mansion.</h2> | ||
</div> | ||
<p className={styles.hireUsSectionBody}> | ||
React Native Core Contributors and experts in dealing with all kinds of | ||
React Native issues. No matter if you need help with animations or React | ||
Native development we can help. | ||
</p> | ||
|
||
<div className={styles.hireUsButton}> | ||
<HomepageButton | ||
backgroundStyling={styles.buttonNavyStyling} | ||
borderStyling={styles.buttonNavyBorderStyling} | ||
href="https://swmansion.com/contact#contact-form" | ||
title="Hire us" | ||
/> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default HireUsSection; |
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,72 @@ | ||
.hireUsSectionWrapper { | ||
display: flex; | ||
position: relative; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 2.5rem; | ||
width: 60%; | ||
margin: 16rem auto 12rem auto; | ||
padding-bottom: 2rem; | ||
} | ||
@media (max-width: 1440px) { | ||
.hireUsSectionWrapper { | ||
width: 75%; | ||
} | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.hireUsSectionWrapper { | ||
width: 80%; | ||
gap: 1.5rem; | ||
} | ||
.hireUsTitleContainer h2 { | ||
font-size: 42px !important; | ||
} | ||
.hireUsSectionBody { | ||
font-size: 20px !important; | ||
} | ||
} | ||
|
||
.hireUsTitleContainer { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 1rem; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.hireUsTitleContainer h2 { | ||
text-align: center; | ||
font-size: 64px; | ||
font-weight: 500; | ||
} | ||
|
||
.hireUsSectionBody { | ||
font-size: 24px; | ||
text-align: center; | ||
text-wrap: balance; | ||
font-weight: 400; | ||
} | ||
|
||
.buttonNavyStyling { | ||
background-color: var(--swm-navy-light-100); | ||
padding: 20px 50px; | ||
color: var(--swm-off-white); | ||
} | ||
|
||
.buttonNavyStyling svg { | ||
stroke: var(--swm-off-white); | ||
} | ||
|
||
.buttonNavyStyling:hover { | ||
background-color: transparent; | ||
color: var(--swm-navy-light-100); | ||
} | ||
|
||
.buttonNavyStyling:hover svg { | ||
stroke: var(--swm-navy-light-100); | ||
} | ||
|
||
.buttonNavyBorderStyling { | ||
border: 1px solid var(--swm-navy-light-100); | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
width: 100%; | ||
height: 100%; | ||
|
||
margin: 180px 0 120px 0; | ||
margin-top: 180px; | ||
} | ||
|
||
@media (max-width: 996px) { | ||
|
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