From 52241d1a4bc6bceb420f70fb401109ceebe2da9b Mon Sep 17 00:00:00 2001 From: Daniel Strong Date: Sun, 13 Oct 2019 10:42:01 -0800 Subject: [PATCH 1/2] empty commit to open calendar PR From 909f4e8610622d8a034f29faf67a6babe1ca8c0f Mon Sep 17 00:00:00 2001 From: Daniel Strong Date: Sun, 13 Oct 2019 16:57:58 -0800 Subject: [PATCH 2/2] add calendar page --- src/components/Navbar.js | 4 ++-- src/pages/calendar.js | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 src/pages/calendar.js diff --git a/src/components/Navbar.js b/src/components/Navbar.js index 9e057aa..ab4116c 100644 --- a/src/components/Navbar.js +++ b/src/components/Navbar.js @@ -59,8 +59,8 @@ const Navbar = class extends React.Component { className={`navbar-menu ${this.state.navBarActiveClass}`} >
- - About + + Calendar Guiding Documents diff --git a/src/pages/calendar.js b/src/pages/calendar.js new file mode 100644 index 0000000..101cbaf --- /dev/null +++ b/src/pages/calendar.js @@ -0,0 +1,28 @@ +import React from 'react' +import Layout from '../components/Layout' + +const CalendarPage = () => ( + +
+

Alaska Developers Alliance Calendar of Events

+
+ +
+
+ +
+ ) + + +export default CalendarPage \ No newline at end of file