Skip to content

Commit

Permalink
feat: Add champion program icons section
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jun 26, 2020
1 parent 39fa513 commit 14b091a
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/pages/developer-champion.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import Layout from '../components/Layout';
import SEO from '../components/Seo';
import PageTitle from '../components/PageTitle';
import ExternalLink from '../components/ExternalLink';
import FeatherIcon from '../components/FeatherIcon';
import colleaguesOffice from '../images/developer-champion/colleagues-office.jpeg';
import devChampionHeader from '../images/developer-champion/developer-champion-header.jpg';
import uptimeEverythingHeader from '../images/developer-champion/uptime-everything-header-image.jpg';
Expand Down Expand Up @@ -90,6 +91,32 @@ const DeveloperChampionPage = () => {
public by:
</p>
</section>
<section className={cx(styles.section, styles.championProgram)}>
<div className={styles.point}>
<FeatherIcon className={styles.pointIcon} name="github" size="4rem" />
<h4>Open-source contributions</h4>
<p>
Serving as an open-source author or maintainer for an accepted
public project related to New Relic One
</p>
</div>
<div className={styles.point}>
<FeatherIcon className={styles.pointIcon} name="trello" size="4rem" />
<h4>Content creation</h4>
<p>
Authoring two pieces of content in the New Relic Explorers Hub / Dev
Website
</p>
</div>
<div className={styles.point}>
<FeatherIcon className={styles.pointIcon} name="users" size="4rem" />
<h4>Community engagement</h4>
<p>
Delivering and/or organizing two events based around an
observability platform theme in which New Relic plays a crucial role
</p>
</div>
</section>
<section className={cx(styles.section, styles.twoColumn)}>
<img
className={styles.img}
Expand Down
17 changes: 17 additions & 0 deletions src/pages/developer-champion.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,20 @@
.img {
width: 100%;
}

.championProgram {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 2rem;
}

.point {
text-align: center;
}

.pointIcon {
--feather-icon-stroke-width: 1;

margin-bottom: 2rem;
color: var(--color-brand-400);
}

0 comments on commit 14b091a

Please sign in to comment.