Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Hire us section to docs #6003

Merged
merged 5 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,11 @@ This project has been built and is maintained thanks to the support from [Shopif
[![shopify](https://avatars1.githubusercontent.com/u/8085?v=3&s=100 'Shopify.com')](https://shopify.com)
[![expo](https://avatars2.githubusercontent.com/u/12504344?v=3&s=100 'Expo.io')](https://expo.io)
[![swm](https://logo.swmansion.com/logo?color=white&variant=desktop&width=150&tag=react-native-reanimated-github 'Software Mansion')](https://swmansion.com)

## Community Discord

[Join the Software Mansion Community Discord](https://discord.swmansion.com) to chat about Reanimated or other Software Mansion libraries.

## Reanimated is created by Software Mansion

Since 2012 [Software Mansion](https://swmansion.com) is a software agency with experience in building web and mobile apps. We are Core React Native Contributors and experts in dealing with all kinds of React Native issues. We can help you build your next dream product – [Hire us](https://swmansion.com/contact#contact-form).
29 changes: 29 additions & 0 deletions docs/src/components/HireUsSection/index.tsx
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;
71 changes: 71 additions & 0 deletions docs/src/components/HireUsSection/styles.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
.hireUsSectionWrapper {
display: flex;
position: relative;
flex-direction: column;
align-items: center;
gap: 2.5rem;
width: 60%;
margin: 16rem auto 12rem auto;
padding-bottom: 2rem;
patrycjakalinska marked this conversation as resolved.
Show resolved Hide resolved
}
@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;
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);
}
2 changes: 1 addition & 1 deletion docs/src/components/Sponsors/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
width: 100%;
height: 100%;

margin: 180px 0 120px 0;
margin-top: 180px;
}

@media (max-width: 996px) {
Expand Down
2 changes: 2 additions & 0 deletions docs/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import ReanimatedFeatures from '@site/src/components/ReanimatedFeatures';
import Animations from '@site/src/components/Animations';
import Testimonials from '@site/src/components/Testimonials';
import Sponsors from '@site/src/components/Sponsors';
import HireUsSection from '../components/HireUsSection';

export default function Home(): JSX.Element {
return (
Expand All @@ -17,6 +18,7 @@ export default function Home(): JSX.Element {
<Animations />
<Testimonials />
<Sponsors />
<HireUsSection />
</div>
</Layout>
);
Expand Down
2 changes: 1 addition & 1 deletion docs/src/theme/Footer/Layout/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ footer {
var(--swm-purple-light-40) 100%
);
width: 100%;
height: 50vh;
height: 40vh;

z-index: -100;
}
Expand Down