Skip to content

Commit 1c4180e

Browse files
authored
docs: Added hiring link to homepage (#409)
1 parent a50a7be commit 1c4180e

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

doc-site/src/pages/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ function HomePageCallToAction () {
3030
</div>
3131
}
3232

33+
function HiringCallToAction () {
34+
return <div className={styles.hiring}>
35+
<Link to="https://commit.dev/career_opportunities/developer-advocate/">
36+
We're hiring a developer advocate!
37+
</Link>
38+
</div>
39+
}
40+
3341
export default function Home() {
3442
const landingPageOnlyGlobalItemStyle = `
3543
.navbar {
@@ -63,6 +71,7 @@ export default function Home() {
6371
<HomepageFeatures />
6472
<HomepageOfferings />
6573
<HomePageCallToAction />
74+
<HiringCallToAction />
6675
</main>
6776
</Layout>
6877
);

doc-site/src/pages/index.module.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@
3535
}
3636
}
3737

38+
.hiring {
39+
display: flex;
40+
align-items: center;
41+
justify-content: center;
42+
margin: 4rem auto 4rem;
43+
a {
44+
font-size: 2rem;
45+
font-weight: bold;
46+
color: #ffffff;
47+
}
48+
}
49+
3850
@media screen and (max-width: 966px) {
3951
.heroBanner {
4052
padding: 2rem;

0 commit comments

Comments
 (0)