-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add beta banner to details page
- Loading branch information
1 parent
6ff9ddb
commit f7c4ca8
Showing
3 changed files
with
25 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react'; | ||
import { css } from '@emotion/react'; | ||
import { Callout } from '@newrelic/gatsby-theme-newrelic'; | ||
|
||
const BetaBanner = () => ( | ||
<Callout | ||
variant={Callout.VARIANT.COURSE} | ||
title="We're in beta!" | ||
css={css` | ||
margin-bottom: 1rem; | ||
margin-top: 1rem; | ||
`} | ||
> | ||
The New Relic I/O beta is currently available to all users, and will require | ||
a full user license for future usage. Note that New Relic's free forever | ||
tier comes with 1 free full user. | ||
</Callout> | ||
); | ||
|
||
export default BetaBanner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters