diff --git a/src/images/developer-champion/colleagues-office.jpeg b/src/images/developer-champion/colleagues-office.jpeg new file mode 100644 index 000000000..45f38d7d6 Binary files /dev/null and b/src/images/developer-champion/colleagues-office.jpeg differ diff --git a/src/images/developer-champion/developer-champion-header.jpg b/src/images/developer-champion/developer-champion-header.jpg new file mode 100644 index 000000000..857cea61a Binary files /dev/null and b/src/images/developer-champion/developer-champion-header.jpg differ diff --git a/src/images/developer-champion/team-meeting.jpg b/src/images/developer-champion/team-meeting.jpg new file mode 100644 index 000000000..45d699bba Binary files /dev/null and b/src/images/developer-champion/team-meeting.jpg differ diff --git a/src/images/developer-champion/uptime-everything-header-image.jpg b/src/images/developer-champion/uptime-everything-header-image.jpg new file mode 100644 index 000000000..96223956e Binary files /dev/null and b/src/images/developer-champion/uptime-everything-header-image.jpg differ diff --git a/src/pages/developer-champion.js b/src/pages/developer-champion.js new file mode 100644 index 000000000..d9816c88f --- /dev/null +++ b/src/pages/developer-champion.js @@ -0,0 +1,150 @@ +// --- +// path: '/developer-champion' +// title: 'New Relic Developer Champion' +// template: 'GuideTemplate' +// --- + +// ## What do developer champions do? +// New Relic Champions demonstrate expertise in using New Relic products by solving large problems and positioning New Relic as a central force in their strategies. The New Relic Champions is a recognition and partnership program designed to acknowledge the developers that are driving innovation within their companies and making top contributions to the developer community. Also committing to making their work public by: + +// ### Open-source Contributions +// Serving as an open-source author or maintainer for an accepted public project related to New Relic One + +// ### Sharing Ideas +// Write posts in the New Relic Explorers Hub, or guides & "how-to" articles on the Developer website, or even as a guest author on our corporate blog. + +// ### Community Engagement +// Delivering and/or organizing two events based around an observability platform theme in which New Relic plays a crucial role +// [Nominate a Developer Champion](https://forms.gle/Zkdub5e1x4MNqSKW9_) + +// ### Why should you join and how will we support? +// As a benefit of being a Developer Champion, New Relic provides Champions unique access to our Developer Advocacy team and the resources of our product organization as well as specialized recognition and rewards. +// ![](../../images/developer-champion/uptime-everything-header-image.jpg) + +// ### Developer Champions Benefits: +// - Formal, specialized access to the New Relic Product organization +// - Champions have direct access to the New Relic’s Developer Ecosystem team +// - Custom badge to wear with pride at events +// - Public recognition on the New Relic Developer website and badging in the New Relic Explorers Hub as a Champion +// - Exclusive Champion-only SWAG +// - Early access program for some of our products (under NDA) +// - Priority access to offsite FutureHack events (including when Lew is participating) +// - Increased Explorer’s Hub support SLA +// - Access to private Developer Champion Explorer’s Hub group + +// [Nominate a Developer Champion](https://forms.gle/Zkdub5e1x4MNqSKW9_) + +// ![](../../images/developer-champion/colleagues-office.jpeg) +// ![](../../images/developer-champion/team-meeting.jpg) + +import React from 'react'; +import cx from 'classnames'; +import Layout from '../components/Layout'; +import SEO from '../components/Seo'; +import PageTitle from '../components/PageTitle'; +import ExternalLink from '../components/ExternalLink'; +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'; +import teamMeeting from '../images/developer-champion/team-meeting.jpg'; +import styles from './developer-champion.module.scss'; + +const DeveloperChampionPage = () => { + return ( + + + New Relic Developer Champions +
+
+

+ New Relic Champions are the voice of the developer community. As + experts and innovators, they are given the resources to not only + share the newest product innovations and updates but also provide + feedback of the community back to New Relic product and engineering + teams. +

+

+ Champions solve big problems using New Relic as their linchpin and + are recognized as experts and leaders in the New Relic technical + community.{' '} +

+ + Nominate a Developer Champion + +
+ developer champion header +
+
+

What do developer champions do?

+

+ New Relic Champions demonstrate expertise in using New Relic products + by solving large problems and positioning New Relic as a central force + in their strategies. The New Relic Champions is a recognition and + partnership program designed to acknowledge the developers that are + driving innovation within their companies and making top contributions + to the developer community. Also committing to making their work + public by: +

+
+
+ uptime everything header +
+

Why should you join and how will we support?

+

+ As a benefit of being a Developer Champion, New Relic provides + Champions unique access to our Developer Advocacy team and the + resources of our product organization as well as specialized + recognition and rewards. +

+
+
+
+

Developer Champions Benefits:

+
    +
  • + Formal, specialized access to the New Relic Product organization +
      +
    • + Champions have direct access to the New Relic’s Developer + Ecosystem team +
    • +
    • Custom badge to wear with pride at events
    • +
    +
  • +
  • + Public recognition on the New Relic Developer website and badging in + the New Relic Explorers Hub as a Champion +
  • +
  • Exclusive Champion-only SWAG
  • +
  • Early access program for some of our products (under NDA)
  • +
  • + Priority access to offsite FutureHack events (including when Lew is + participating) +
  • +
  • + Increased Explorer’s Hub support SLA Access to private Developer + Champion Explorer’s Hub group +
  • +
+
+
+ colleagues office + team meeting +
+
+ ); +}; + +export default DeveloperChampionPage; diff --git a/src/pages/developer-champion.module.scss b/src/pages/developer-champion.module.scss new file mode 100644 index 000000000..babef3c48 --- /dev/null +++ b/src/pages/developer-champion.module.scss @@ -0,0 +1,15 @@ +.section { + &:not(:last-child) { + margin-bottom: 4rem; + } +} + +.twoColumn { + display: grid; + grid-template-columns: repeat(2, calc(50% - 1rem)); + grid-gap: 2rem; +} + +.img { + width: 100%; +}