From dc5ca6e830ffadd85b6675fcf0150f669a014bfb Mon Sep 17 00:00:00 2001 From: Zack Stickles Date: Wed, 1 Sep 2021 10:50:22 -0700 Subject: [PATCH 1/2] chore: removing last year's nerd-days page This commit removed last year's Nerd Days page(s). We no longer need them online and there is a bug in the code that is throwing javascript errors. Additionally, it looks like someone is sending a lot of traffic to this page right now: https://staging.onenr.io/0znQxp59BQV. This is causing a lot of on-call pages. Since there's no value in keeping the page online, I am proposing that we remove the pages. --- src/pages/apj-nerd-days.js | 610 ------------------- src/pages/emea-nerd-days.js | 830 -------------------------- src/pages/nerd-days-thank-you.js | 61 -- src/pages/nerd-days.js | 964 ------------------------------- 4 files changed, 2465 deletions(-) delete mode 100644 src/pages/apj-nerd-days.js delete mode 100644 src/pages/emea-nerd-days.js delete mode 100644 src/pages/nerd-days-thank-you.js delete mode 100644 src/pages/nerd-days.js diff --git a/src/pages/apj-nerd-days.js b/src/pages/apj-nerd-days.js deleted file mode 100644 index 395764c0b..000000000 --- a/src/pages/apj-nerd-days.js +++ /dev/null @@ -1,610 +0,0 @@ -import React, { cloneElement } from 'react'; -import PropTypes from 'prop-types'; -import { css } from '@emotion/react'; -import cx from 'classnames'; -import PageLayout from '../components/PageLayout'; -import { Button, Icon, NewRelicLogo } from '@newrelic/gatsby-theme-newrelic'; -import DevSiteSeo from '../components/DevSiteSeo'; -import { graphql, useStaticQuery, Link } from 'gatsby'; -import FeatherIcon from '../components/FeatherIcon'; -import * as styles from './nerd-days.module.scss'; -import NerdDaysLogo from '../components/NerdDaysLogo'; -import graphLines from '../images/nerd-days/hero-image-graph-lines.png'; -import heroBackgroundPattern from '../images/nerd-days/nerd-days-hero-bg-pattern.png'; -import shapesIcon from '../images/nerd-days/icon-shapes.svg'; -import openSourceIcon from '../images/nerd-days/icon-open-source.svg'; -import HopinLogo from '../components/HopinLogo'; -import MarketoForm from '../components/MarketoForm'; -import styled from '@emotion/styled'; -import Agenda from '../components/Agenda'; - -const NerdDaysPage = ({ location }) => { - const { - site: { layout }, - } = useStaticQuery(graphql` - query { - site { - layout { - contentPadding - } - } - } - `); - - const alternateSection = css` - background-color: var(--tertiary-background-color); - margin-left: -${layout.contentPadding}; - margin-right: -${layout.contentPadding}; - `; - - return ( - <> - - - -
-
- - -
-

- Nerd Days is a free - {` `} - 1-day event focused on building more perfect software -

-
-
- Register for Nerd Days 1.0 - - Nerd Days is a FREE engineering conference that kicks off October - 22 (Dates vary by region) - -
-
-

What is Nerd Days exactly…

-

- Nerd Days is a FREE engineering conference that kicks - off October 22 (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. -

-

- Including: -

    -
  • Live workshops
  • -
  • Live coding and demos
  • -
  • Customer examples
  • -
  • Panel / Q&A sessions
  • -
-

-

- 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. -

-

Save the date & join us online

-

- Date: October 22, 2020 -
- Nerd Days Starts: 12PM AEDT/ 9AM SGT/ 6:30AM - IST -
- Nerd Days Ends: 5PM AEDT/ 2PM SGT/ 11:30AM - IST -

-

- We look forward to building with you during Nerd Days! If you - have any questions about Nerd Days please emails{' '} - - APAC-events@newrelic.com - -

-

- Additional Nerd Days Events -

-
    - - AMER Registration - - - EMEA Registration - -
-
- -
-
- -
- Tracks - - Tracks will vary by region. All sessions will be recorded and - distributed after the event. - - -
    - } - /> - } - /> - } - /> -
-
- -
- Nerd Days APAC Agenda - - We’ve got a packed schedule with thought-leaders of their - respective industries - - - - - - - - - - - - - - - - - - - -
- -
- Engage with the developer community - - - - - -

- Event powered by Hopin -

-
-
-
-
- - ); -}; - -NerdDaysPage.propTypes = { - location: PropTypes.object.isRequired, -}; - -const breakpoints = { - laptop: '@media screen and (max-width: 1100px)', - mobile: '@media screen and (max-width: 480px)', -}; - -const TrackItem = ({ icon, name }) => ( -
  • - {cloneElement(icon, { - css: css` - margin-bottom: 0.75rem; - `, - })} -
    - {name} -
    -
  • -); - -TrackItem.propTypes = { - icon: PropTypes.node, - name: PropTypes.string, -}; - -const TrackFeatherIcon = styled(FeatherIcon)` - stroke: url(#nerdDaysGradient); - stroke-width: 1.12px; -`; - -const EngagementIcon = (props) => ( - -); - -const Section = styled.section` - padding: 4rem 0; - position: relative; -`; - -const SectionHeading = styled.h3` - font-size: 1.75rem; - text-align: center; - - ${breakpoints.mobile} { - font-size: 1.5rem; - } -`; - -const SectionDescription = styled.p` - margin-bottom: 2rem; - text-align: center; -`; - -const CtaItem = ({ date, to, children }) => ( -
  • - - - {date} - -
  • -); - -CtaItem.propTypes = { - date: PropTypes.string.isRequired, - to: PropTypes.string, - children: PropTypes.string, -}; - -export default NerdDaysPage; diff --git a/src/pages/emea-nerd-days.js b/src/pages/emea-nerd-days.js deleted file mode 100644 index c731189b1..000000000 --- a/src/pages/emea-nerd-days.js +++ /dev/null @@ -1,830 +0,0 @@ -import React, { cloneElement } from 'react'; -import PropTypes from 'prop-types'; -import { css } from '@emotion/react'; -import cx from 'classnames'; -import PageLayout from '../components/PageLayout'; -import { - Button, - Icon, - NewRelicLogo, - Surface, -} from '@newrelic/gatsby-theme-newrelic'; -import DevSiteSeo from '../components/DevSiteSeo'; -import { graphql, useStaticQuery, Link } from 'gatsby'; -import FeatherIcon from '../components/FeatherIcon'; -import * as styles from './nerd-days.module.scss'; -import NerdDaysLogo from '../components/NerdDaysLogo'; -import graphLines from '../images/nerd-days/hero-image-graph-lines.png'; -import heroBackgroundPattern from '../images/nerd-days/nerd-days-hero-bg-pattern.png'; -import shapesIcon from '../images/nerd-days/icon-shapes.svg'; -import openSourceIcon from '../images/nerd-days/icon-open-source.svg'; -import HopinLogo from '../components/HopinLogo'; -import MarketoForm from '../components/MarketoForm'; -import styled from '@emotion/styled'; -import Agenda from '../components/Agenda'; - -import StijnPolfliet from '../images/nerd-days/emea-speakers/StijnPolfliet.jpg'; -import JavierRamos from '../images/nerd-days/emea-speakers/JavierRamos.jpg'; -import DaisyMuyldermans from '../images/nerd-days/emea-speakers/DaisyMuyldermans.jpg'; -import AntonMalinovskiy from '../images/nerd-days/emea-speakers/AntonMalinovskiy.jpg'; -import JasonClark from '../images/nerd-days/emea-speakers/JasonClark.jpg'; -import IreneLopez from '../images/nerd-days/emea-speakers/IreneLopez.jpg'; -import MiguelMingorance from '../images/nerd-days/emea-speakers/MiguelMignorance.jpg'; -import LiamHurrell from '../images/nerd-days/emea-speakers/LiamHurrell.jpg'; -import TomDoherty from '../images/nerd-days/emea-speakers/TomDoherty.jpg'; -import DanielAguas from '../images/nerd-days/emea-speakers/DanielAguas.jpg'; -import WilliamJanssen from '../images/nerd-days/emea-speakers/WilliamJanssen.jpg'; -import ManeshTailor from '../images/nerd-days/emea-speakers/ManeshTailor.jpg'; -import SteveWoodard from '../images/nerd-days/emea-speakers/SteveWoodard.jpg'; -import IdirOuhab from '../images/nerd-days/emea-speakers/IdirOuhab.jpg'; -import BenEvans from '../images/nerd-days/emea-speakers/BenEvans.jpg'; - -const speakers = [ - { - name: 'Anton Malinovskiy', - image: AntonMalinovskiy, - title: 'Principal Software Engineer', - company: 'Ocado Technology', - }, - { - name: 'Ben Evans', - image: BenEvans, - title: 'Principal Software Engineer', - company: 'New Relic', - }, - { - name: 'Daisy Muyldermans', - image: DaisyMuyldermans, - title: 'Associate Solutions Engineer', - company: 'New Relic', - }, - { - name: 'Daniel Aguas', - image: DanielAguas, - title: 'Software Developer', - company: 'Basecone', - }, - { - name: 'Idir Ouhab Meskine', - image: IdirOuhab, - title: 'Solutions Consultant', - company: 'New Relic', - }, - { - name: 'Irene Lopez', - image: IreneLopez, - title: 'Software Engineer', - company: 'New Relic', - }, - { - name: 'Jason Clark', - image: JasonClark, - title: 'Principal Software Engineer', - company: 'New Relic', - }, - { - name: 'Javier Ramos', - image: JavierRamos, - title: 'Principal Site Reliability Engineer', - company: 'Elsevier', - }, - - { - name: 'Liam Hurrell', - image: LiamHurrell, - title: 'Senior Technical Training Specialist', - company: 'New Relic', - }, - { - name: 'Manesh Tailor', - image: ManeshTailor, - title: 'Services Solutions Director', - company: 'New Relic', - }, - { - name: 'Miguel Mingorance', - image: MiguelMingorance, - title: 'Systems Engineer', - company: 'Delivery Hero', - }, - { - name: 'Steve Woodard', - image: SteveWoodard, - title: 'Enterprise Solutions Architect', - company: 'AWS', - }, - { - name: 'Stijn Polfliet', - image: StijnPolfliet, - title: 'Principal TechOps Strategy Consultant', - company: 'New Relic', - }, - { - name: 'Tom Doherty', - image: TomDoherty, - title: 'Lead Technical Training Program Manager', - company: 'New Relic', - }, - { - name: 'William Janssen', - image: WilliamJanssen, - title: 'CTO', - company: 'Delta Blue', - }, -]; - -const NerdDaysPage = ({ location }) => { - const { - site: { layout }, - } = useStaticQuery(graphql` - query { - site { - layout { - contentPadding - } - } - } - `); - - const alternateSection = css` - background-color: var(--tertiary-background-color); - margin-left: -${layout.contentPadding}; - margin-right: -${layout.contentPadding}; - `; - - return ( - <> - - - -
    -
    - - -
    -

    - Nerd Days is a free - {` `} - 1-day event focused on building more perfect software -

    -
    -
    - Register for Nerd Days 1.0 - - Nerd Days is a FREE engineering conference that kicks off November - 10 (Dates vary by region) - -
    -
    -

    What is Nerd Days exactly…

    -

    - Nerd Days is a FREE engineering conference that kicks - off November 10, 2020 (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. -

    -

    - Including: -

      -
    • Live workshops
    • -
    • Live coding and demos
    • -
    • Customer examples
    • -
    • Panel / Q&A sessions
    • -
    -

    -

    Save the date & join us online

    -

    - Whether you’re new or a data nerd, there’s an interactive - session for you. Choose the sessions you're interested in and - add Nerd Days to your calendar. -

    -

    - Date: November 10, 2020 -
    - Time: 9:45AM GMT - 3:30 - 4 pm GMT (Depending - on last session) -

    -

    - We look forward to building with you during Nerd Days! If you - have any questions about Nerd Days please emails{' '} - - emeamarketing@newrelic.com - -

    -

    - Additional Nerd Days Events -

    -
      - - AMER Registration - - - APJ Registration - -
    -
    - -
    -
    -
    - Speaker line up - - Get hands on with sessions presented by the following Relics, - partners, Developer Champions, and customers. - - -
      - {speakers.map(({ name, title, image, company }, idx) => ( - -
      - {name} -
      -
      -

      - {name} -

      -

      - {title} -

      -

      - {company} -

      -
      -
      - ))} -
    -
    - -
    - Tracks - - Tracks will vary by region. All sessions will be recorded and - distributed after the event. - - -
      - } - /> - } - /> - } - /> -
    -
    - -
    - Nerd Days EMEA Agenda - - We’ve got a packed schedule with thought-leaders of their - respective industries - - - - - - - - - - - - - - - - - - - - - -
    - -
    - Engage with the developer community - - - - - -

    - Event powered by Hopin -

    -
    -
    -
    -
    - - ); -}; - -NerdDaysPage.propTypes = { - location: PropTypes.object.isRequired, -}; - -const breakpoints = { - laptop: '@media screen and (max-width: 1100px)', - mobile: '@media screen and (max-width: 480px)', -}; - -const TrackItem = ({ icon, name }) => ( -
  • - {cloneElement(icon, { - css: css` - margin-bottom: 0.75rem; - `, - })} -
    - {name} -
    -
  • -); - -TrackItem.propTypes = { - icon: PropTypes.node, - name: PropTypes.string, -}; - -const TrackFeatherIcon = styled(FeatherIcon)` - stroke: url(#nerdDaysGradient); - stroke-width: 1.12px; -`; - -const EngagementIcon = (props) => ( - -); - -const Section = styled.section` - padding: 4rem 0; - position: relative; -`; - -const SectionHeading = styled.h3` - font-size: 1.75rem; - text-align: center; - - ${breakpoints.mobile} { - font-size: 1.5rem; - } -`; - -const SectionDescription = styled.p` - margin-bottom: 2rem; - text-align: center; -`; - -const CtaItem = ({ date, to, children }) => ( -
  • - - - {date} - -
  • -); - -CtaItem.propTypes = { - date: PropTypes.string.isRequired, - to: PropTypes.string, - children: PropTypes.string, -}; - -export default NerdDaysPage; diff --git a/src/pages/nerd-days-thank-you.js b/src/pages/nerd-days-thank-you.js deleted file mode 100644 index ae854fd49..000000000 --- a/src/pages/nerd-days-thank-you.js +++ /dev/null @@ -1,61 +0,0 @@ -import React from 'react'; -import cx from 'classnames'; -import PropTypes from 'prop-types'; -import PageLayout from '../components/PageLayout'; -import DevSiteSeo from '../components/DevSiteSeo'; -import nerdDays from '../images/nerd-days/nerd-days.png'; -import * as styles from './nerd-days.module.scss'; - -const NerdDaysPage = ({ location }) => { - return ( - <> - - - -
    -
    - nerd days header -

    You’re registered for Nerd Days

    -

    - Thanks again for signing up. Here’s some helpful information to - know before you go. -

    - -

    Create your Hopin account:

    -

    - You’ll get an email from Hopin inviting you to create your - account/profile for Nerd Days 1.0. Once you sign in, you’ll see: -

    - -
      -
    • - The Stage where the keynotes will take place -
    • -
    • - Sessions where you can register for the - hands-on workshops, and get access to New Relic One. -
    • -
    • - Networking where you can connect 1:1 with - other attendees or our SMEs to ask questions, chat, and share - ideas. -
    • -
    -
    -
    -
    - - - - ); -}; - -NerdDaysPage.propTypes = { - location: PropTypes.object.isRequired, -}; - -export default NerdDaysPage; diff --git a/src/pages/nerd-days.js b/src/pages/nerd-days.js deleted file mode 100644 index 8972513c5..000000000 --- a/src/pages/nerd-days.js +++ /dev/null @@ -1,964 +0,0 @@ -import React, { cloneElement } from 'react'; -import PropTypes from 'prop-types'; -import { css } from '@emotion/react'; -import cx from 'classnames'; -import PageLayout from '../components/PageLayout'; -import { - Button, - Icon, - NewRelicLogo, - Surface, -} from '@newrelic/gatsby-theme-newrelic'; -import DevSiteSeo from '../components/DevSiteSeo'; -import { graphql, useStaticQuery, Link } from 'gatsby'; -import FeatherIcon from '../components/FeatherIcon'; -import * as styles from './nerd-days.module.scss'; -import roadIcon from '../images/nerd-days/icon-road.svg'; -import NerdDaysLogo from '../components/NerdDaysLogo'; -import graphLines from '../images/nerd-days/hero-image-graph-lines.png'; -import heroBackgroundPattern from '../images/nerd-days/nerd-days-hero-bg-pattern.png'; -import shapesIcon from '../images/nerd-days/icon-shapes.svg'; -import openSourceIcon from '../images/nerd-days/icon-open-source.svg'; -import HopinLogo from '../components/HopinLogo'; -import styled from '@emotion/styled'; -import Agenda from '../components/Agenda'; - -import AaronSoto from '../images/nerd-days/speakers/AaronSoto.jpg'; -import CaitlinHalla from '../images/nerd-days/speakers/CaitlinHalla.jpg'; -import DavidShanker from '../images/nerd-days/speakers/DavidShanker.jpg'; -import JeremyCooper from '../images/nerd-days/speakers/JeremyCooper.jpg'; -import JoelWorrall from '../images/nerd-days/speakers/JoelWorrall.jpg'; -import JohnVajda from '../images/nerd-days/speakers/JohnVajda.jpg'; -import JonThurman from '../images/nerd-days/speakers/JonThurman.jpg'; -import JustinEveland from '../images/nerd-days/speakers/JustinEveland.jpg'; -import LeonChapman from '../images/nerd-days/speakers/LeonChapman.jpg'; -import LindsyFarina from '../images/nerd-days/speakers/LindsyFarina.jpg'; -import TaliaNassi from '../images/nerd-days/speakers/TaliaNassi.jpg'; -import ThomasMartin from '../images/nerd-days/speakers/ThomasMartin.jpg'; -import AlecSwanson from '../images/nerd-days/speakers/AlecSwanson.jpg'; -import BrianThomason from '../images/nerd-days/speakers/BrianThomason.jpg'; -import ChrisTrombley from '../images/nerd-days/speakers/ChrisTrombley.jpg'; -import GabeObrien from '../images/nerd-days/speakers/GabeObrien.jpg'; -import LiamHurrell from '../images/nerd-days/speakers/LiamHurrell.jpg'; -import MichaelCaron from '../images/nerd-days/speakers/MichaelCaron.jpg'; -import PhilWeber from '../images/nerd-days/speakers/PhilWeber.jpg'; -import SebastianRamirez from '../images/nerd-days/speakers/SebastianRamirez.jpg'; -import SanderBlue from '../images/nerd-days/speakers/SanderBlue.jpg'; -import JewelsNocera from '../images/nerd-days/speakers/JewelsNocera.jpg'; -import NicaFee from '../images/nerd-days/speakers/NicaFee.jpg'; -import StijnPolfliet from '../images/nerd-days/speakers/StijnPolfliet.jpg'; -import BradSchmitt from '../images/nerd-days/speakers/BradSchmitt.jpg'; -import EricMittelhammer from '../images/nerd-days/speakers/EricMittelhammer.jpg'; -import ColinMacNaughton from '../images/nerd-days/speakers/ColinMacNaughton.jpg'; - -const NerdDaysPage = ({ location }) => { - const { - site: { layout }, - } = useStaticQuery(graphql` - query { - site { - layout { - contentPadding - } - } - } - `); - - const alternateSection = css` - background-color: var(--tertiary-background-color); - margin-left: -${layout.contentPadding}; - margin-right: -${layout.contentPadding}; - `; - - return ( - <> - - - -
    -
    - - -
    -

    - Nerd Days is a free - {` `} - 1-day event focused on building more perfect software -

    -
    -
    - Register for Nerd Days 1.0 - - Nerd Days is a FREE engineering conference that kicks off October - 13 (Dates vary by region) - -
    -
    -

    What’s is Nerd Days exactly…

    -

    - A{' '} - - FREE - {' '} - developer focused live digital conference covering a broad - range of topics at varying levels for all skill sets. -

    -

    - Including: -

      -
    • Live workshops
    • -
    • Live coding and demos
    • -
    • Customer examples
    • -
    • Panel / Q&A sessions
    • -
    -

    -

    - Presented by Relics, partners, Developer Champions, and - customers -

    -

    Save the date & join us online

    -

    - Whether you’re new or a data nerd, there’s an interactive - session for you. Choose the sessions you're interested in and - add Nerd Days to your calendar. -

    -

    - Date: October 13, 2020 -
    - Time: 9AM PST - 3PM PST -

    -

    - We look forward to building with you during Nerd Days! If you - have any questions about Nerd Days please emails{' '} - deco@newrelic.com. -

    -
    -
    -

    Upcoming Nerd Days

    -
      - - EMEA Registration - -
    -
    -
    -
    -
    - Speaker line up - - Get hands on with sessions presented by the following Relics, - partners, Developer Champions, and customers. - - -
      - {speakers.map(({ name, title, image, company }, idx) => ( - -
      - {name} -
      -
      -

      - {name} -

      -

      - {title} -

      -

      - {company} -

      -
      -
      - ))} -
    -
    -
    - Tracks - - Tracks will vary by region. All sessions will be recorded and - distributed after the event. - - -
      - } - /> - } - /> - } - /> - } - /> - } - /> -
    -
    - -
    - Nerd Days AMER Agenda - - We’ve got a packed schedule with thought-leaders of their - respective industries - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - Engage with the developer community - - - - - -

    - Event powered by Hopin -

    -
    -
    -
    -
    - - ); -}; - -NerdDaysPage.propTypes = { - location: PropTypes.object.isRequired, -}; - -const speakers = [ - { - name: 'Aaron Soto', - image: AaronSoto, - title: 'Sr. Partner Solutions Architect', - company: 'AWS', - }, - { - name: 'Caitlin Halla', - image: CaitlinHalla, - title: 'Software Engineer', - company: 'New Relic', - }, - { - name: 'David Shanker', - image: DavidShanker, - title: 'Director, Platform Engineering', - company: 'Kinect Consulting', - }, - { - name: 'Jeremy Cooper', - image: JeremyCooper, - title: 'Sr. TechOps Strategy Consultant', - company: 'New Relic', - }, - { - name: 'Joel Worrall', - image: JoelWorrall, - title: 'Director, Open Source and Developer Advocacy', - company: 'New Relic', - }, - { - name: 'John Vajda', - image: JohnVajda, - title: 'Senior Product Manager', - company: 'New Relic', - }, - { - name: 'Jon Thurman', - image: JonThurman, - title: 'Senior Solutions Consultant', - company: 'New Relic', - }, - { - name: 'Justin Eveland', - image: JustinEveland, - title: 'Software Engineer', - company: 'New Relic', - }, - { - name: 'Leon Chapman', - image: LeonChapman, - title: 'Senior TechOps Strategy Consultant', - company: 'New Relic', - }, - { - name: 'Lindsy Farina', - image: LindsyFarina, - title: 'Senior Product Manager', - company: 'New Relic', - }, - { - name: 'Talia Nassi', - image: TaliaNassi, - title: 'Developer Advocate', - company: 'Split Software', - }, - { - name: 'Thomas Martin', - image: ThomasMartin, - title: 'Director, Site Reliability', - company: '27 Global', - }, - { - name: 'Alec Swanson', - image: AlecSwanson, - title: 'Software Engineer', - company: 'New Relic', - }, - { - name: 'Brian Thomason', - image: BrianThomason, - title: 'Senior Partner Solutions Consultant', - company: 'New Relic', - }, - { - name: 'Chris Trombley', - image: ChrisTrombley, - title: 'Senior Software Engineer', - company: 'New Relic', - }, - { - name: 'Sander Blue', - image: SanderBlue, - title: 'Senior Software Engineer', - company: 'New Relic', - }, - { - name: "Gabe O'Brien", - image: GabeObrien, - title: 'Senior Software Engineer', - company: 'New Relic', - }, - { - name: 'Liam Hurrell', - image: LiamHurrell, - title: 'Senior Technical Training Specialist', - company: 'New Relic', - }, - { - name: 'Michael Caron', - image: MichaelCaron, - title: 'Senior Technical Training Specialist', - company: 'New Relic', - }, - { - name: 'Phil Weber', - image: PhilWeber, - title: 'Senior Technical Training Specialist', - company: 'New Relic', - }, - { - name: 'Sebastian Remirez', - image: SebastianRamirez, - title: 'Lead Software Engineer', - company: 'New Relic', - }, - { - name: 'Jewels Nocera', - image: JewelsNocera, - title: 'Senior Software Engineer', - company: 'New Relic', - }, - { - name: 'Nica Fee', - image: NicaFee, - title: 'Developer Advocate', - company: 'New Relic', - }, - { - name: 'Stijn Polfliet', - image: StijnPolfliet, - title: 'Principal TechOps Strategy Consultant', - company: 'New Relic', - }, - { - name: 'Brad Schmitt', - image: BradSchmitt, - title: 'Senior TechOps Strategy Consultant', - company: 'New Relic', - }, - { - name: 'Eric Mittelhammer', - image: EricMittelhammer, - title: 'Senior TechOps Strategy Consultant', - company: 'New Relic', - }, - { - name: 'Colin MacNaughton', - image: ColinMacNaughton, - title: 'Lead Software Engineer', - company: 'New Relic', - }, -]; - -const breakpoints = { - laptop: '@media screen and (max-width: 1100px)', - mobile: '@media screen and (max-width: 480px)', -}; - -const TrackItem = ({ icon, name }) => ( -
  • - {cloneElement(icon, { - css: css` - margin-bottom: 0.75rem; - `, - })} -
    - {name} -
    -
  • -); - -TrackItem.propTypes = { - icon: PropTypes.node, - name: PropTypes.string, -}; - -const TrackFeatherIcon = styled(FeatherIcon)` - stroke: url(#nerdDaysGradient); - stroke-width: 1.12px; -`; - -const EngagementIcon = (props) => ( - -); - -const Section = styled.section` - padding: 4rem 0; - position: relative; -`; - -const SectionHeading = styled.h3` - font-size: 1.75rem; - text-align: center; - - ${breakpoints.mobile} { - font-size: 1.5rem; - } -`; - -const SectionDescription = styled.p` - margin-bottom: 2rem; - text-align: center; -`; - -const CtaItem = ({ date, to, children }) => ( -
  • - - - {date} - -
  • -); - -CtaItem.propTypes = { - date: PropTypes.string.isRequired, - to: PropTypes.string, - children: PropTypes.string, -}; - -export default NerdDaysPage; From ac29e60f0e02c476c13ac19fa05ba965525f7ba4 Mon Sep 17 00:00:00 2001 From: Zack Stickles Date: Wed, 1 Sep 2021 11:30:23 -0700 Subject: [PATCH 2/2] chore: removing nerd days from navigation --- src/data/nav.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/data/nav.yml b/src/data/nav.yml index a1d818021..ee7fbd441 100644 --- a/src/data/nav.yml +++ b/src/data/nav.yml @@ -439,8 +439,6 @@ pages: - title: Kubecon & CloudNativeCon url: '/kubecon-europe-2020' - - title: Nerd days 1.0 - url: '/nerd-days' - title: All things open url: '/all-things-open' - title: Nerd Bytes