diff --git a/package-lock.json b/package-lock.json index a75c44ac8..0d49cdedf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13415,6 +13415,24 @@ } } }, + "gatsby-plugin-layout": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/gatsby-plugin-layout/-/gatsby-plugin-layout-1.3.10.tgz", + "integrity": "sha512-iO+aDef4hzJVrIa+LrO3r2FzcM4OdMePb/sDKgmknAeN+sJKH735DdRbk/H/41UREM9rTdwdq+/oFxxlAo3Lmw==", + "requires": { + "@babel/runtime": "^7.10.3" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.11.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz", + "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + } + } + }, "gatsby-plugin-manifest": { "version": "2.4.19", "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-2.4.19.tgz", diff --git a/package.json b/package.json index 0c7781455..8d01a24aa 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "gatsby-plugin-emotion": "^4.3.10", "gatsby-plugin-google-analytics": "^2.3.10", "gatsby-plugin-google-tagmanager": "^2.3.5", + "gatsby-plugin-layout": "^1.3.10", "gatsby-plugin-manifest": "^2.4.19", "gatsby-plugin-mdx": "^1.2.30", "gatsby-plugin-meta-redirect": "^1.1.1", diff --git a/src/pages/nerd-days.js b/src/pages/nerd-days.js index dd31f01ee..8d6417b0c 100644 --- a/src/pages/nerd-days.js +++ b/src/pages/nerd-days.js @@ -1,9 +1,8 @@ import React, { useEffect } from 'react'; import { Link } from 'gatsby'; import cx from 'classnames'; -import Layout from '../components/Layout'; +import PageLayout from '../components/PageLayout'; import SEO from '../components/Seo'; -import PageTitle from '../components/PageTitle'; import nerdDays from '../images/nerd-days/nerd-days.png'; import styles from './nerd-days.module.scss'; import '../components/marketo.scss'; @@ -47,46 +46,55 @@ const NerdDaysPage = () => { }, []); return ( - + <> - New Relic Nerd Days -
-
- nerd days header -

- Nerd Days is a FREE engineering conference that kicks off October 13{' '} - (Dates vary by region). Focused on building more perfect - software, our goal is to spend less time looking at slides that tell - you what software can do and more time on getting your hands on the - software to solve problems efficiently. -

-

- You’ll hear from fellow engineers who built New Relic solutions and - New Relic users from various industries. Whether you’re new or a - data nerd, there’s an interactive session for you. -

-

We look forward to building with you during Nerd Days!

-

CALL FOR PROPOSALS

-

- Got an interesting topic you want to share with your fellow - engineers?{' '} - - Submit your proposals - {' '} - by September 1, 2021 at 11:59 PM PT. For more details, check out the - one-pager. proposals will contacted by September 30, 2021 at the - latest. -

-
-
-
-

REGISTER FOR THIS NERD DAYS

-
-
-
-
-
- + + + +
+
+ nerd days header +

+ Nerd Days is a FREE engineering conference that kicks off + October 13 (Dates vary by region). Focused on building + more perfect software, our goal is to spend less time looking at + slides that tell you what software can do and more time on + getting your hands on the software to solve problems + efficiently. +

+

+ You’ll hear from fellow engineers who built New Relic solutions + and New Relic users from various industries. Whether you’re new + or a data nerd, there’s an interactive session for you. +

+

We look forward to building with you during Nerd Days!

+

CALL FOR PROPOSALS

+

+ Got an interesting topic you want to share with your fellow + engineers?{' '} + + Submit your proposals + {' '} + by September 1, 2021 at 11:59 PM PT. For more details, check out + the one-pager. proposals will contacted by September 30, 2021 at + the latest. +

+
+
+
+

REGISTER FOR THIS NERD DAYS

+ +
+
+
+
+ + + ); };