Skip to content

Commit

Permalink
Merge pull request #196 from newrelic/zstickles/remove-fsm
Browse files Browse the repository at this point in the history
Remove References to Full-Stack Monitoring
  • Loading branch information
jerelmiller authored Jun 19, 2020
2 parents cafa226 + f7f25f4 commit 571aef6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
2 changes: 2 additions & 0 deletions src/components/GuideTile.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
background-color: white;
box-shadow: var(--boxshadow);
padding: 0.5rem;
border: 1px solid var(--color-neutrals-300);
border-radius: 0.25rem;

button:hover {
transform: translateY(-1px);
Expand Down
6 changes: 0 additions & 6 deletions src/pages/explore-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ import pages from '../data/sidenav.json';
const title = 'Get data into New Relic';

const guides = [
{
minutes: 5,
title: 'Full Stack Monitoring',
description: 'Get data into New Relic using your existing instrumentation.',
path: '',
},
{
minutes: 10,
title: 'Customized Agents',
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const IndexPage = ({ pageContext }) => (
</GuideListing.Heading>
<GuideListing.List>
{getStartedGuides.map((guide, index) => (
<GuideTile className={styles.guideTile} key={index} {...guide} />
<GuideTile key={index} {...guide} />
))}
</GuideListing.List>
</GuideListing>
Expand All @@ -105,7 +105,7 @@ const IndexPage = ({ pageContext }) => (
</GuideListing.Heading>
<GuideListing.List>
{guides.map((guide, index) => (
<GuideTile className={styles.guideTile} key={index} {...guide} />
<GuideTile key={index} {...guide} />
))}
</GuideListing.List>
</GuideListing>
Expand Down
5 changes: 0 additions & 5 deletions src/pages/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,6 @@
font-size: 2.5rem;
}

.guideTile {
border: 1px solid var(--color-neutrals-300);
border-radius: 0.25rem;
}

.backgroundBanner {
height: 125%;
top: 1rem;
Expand Down

0 comments on commit 571aef6

Please sign in to comment.