Skip to content

Amer final agenda #814

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

Merged
merged 3 commits into from
Oct 2, 2020
Merged
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: 1 addition & 1 deletion src/components/Agenda/Session.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const Session = ({
>
<h4
css={css`
font-size: 1rem;
font-size: 0.9rem;
font-weight: 700;
margin-bottom: 0.25rem;
`}
Expand Down
Binary file added src/images/nerd-days/speakers/AlecSwanson.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/nerd-days/speakers/BrianThomason.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/nerd-days/speakers/GabeObrien.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/nerd-days/speakers/LiamHurrell.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/nerd-days/speakers/MichaelCaron.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/nerd-days/speakers/PhilWeber.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions src/pages/nerd-days.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ 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';

const NerdDaysPage = () => {
const {
site: { layout },
Expand Down Expand Up @@ -744,6 +753,54 @@ const speakers = [
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: "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',
},
];

const breakpoints = {
Expand Down