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

Nerdlog #1125

Merged
merged 11 commits into from
Mar 16, 2021
Merged

Nerdlog #1125

Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions src/@newrelic/gatsby-theme-newrelic/icons/newrelic.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import event from './newrelic/event';
import podcasts from './newrelic/podcasts';
import relicans from './newrelic/relicans';
import share from './newrelic/share';
import nerdlog from './newrelic/nerdlog';

export default {
...defaultIcons,
Expand All @@ -20,4 +21,5 @@ export default {
relicans,
podcasts,
share,
nerdlog,
};
13 changes: 13 additions & 0 deletions src/@newrelic/gatsby-theme-newrelic/icons/newrelic/nerdlog.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from 'react';
import NewRelicSVG from '../../../../components/NewRelicSVG';

const nerdlogIcon = (props) => (
<NewRelicSVG {...props}>
<>
<polygon points="23 7 16 12 23 17 23 7" />
<rect x="1" y="5" width="15" height="14" rx="2" ry="2" />
</>
</NewRelicSVG>
);

export default nerdlogIcon;
3 changes: 3 additions & 0 deletions src/data/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,9 @@
- title: New Relic Builders
icon: nr-builders
url: '/builders'
- title: Nerdlog
icon: nr-nerdlog
url: '/nerdlog'
- title: Podcasts
icon: nr-podcasts
url: '/podcasts'
Loading