diff --git a/src/components/common/Navbar/Navbar.js b/src/components/common/Navbar/Navbar.js index 40896f9..4238d0a 100644 --- a/src/components/common/Navbar/Navbar.js +++ b/src/components/common/Navbar/Navbar.js @@ -17,7 +17,7 @@ import { ReactComponent as DevfolioLogo } from '@images/devfolio-white.svg'; import { ReactComponent as MenuIcon } from '@static/icons/menu.svg'; import { ReactComponent as MenuCloseIcon } from '@static/icons/x.svg'; -const NAV_ITEMS = ['About', 'Gallery', 'Schedule', 'Sponsors', 'FAQ']; +const NAV_ITEMS = ['About', 'Gallery', 'Schedule', 'Sponsors', 'FAQ', 'Contact Us']; class Navbar extends Component { state = { diff --git a/src/components/sections/About.js b/src/components/sections/About.js index 1a2604d..e3cc213 100644 --- a/src/components/sections/About.js +++ b/src/components/sections/About.js @@ -5,8 +5,8 @@ import { Section, Container } from '@components/global'; const About = () => (
-

about us

About

+

about us

The Sith killed each other, victims of their own greed. But from the ashes of their destruction, I was the last survivor. I chose to pass my diff --git a/src/components/sections/Contact.js b/src/components/sections/Contact.js new file mode 100644 index 0000000..434c809 --- /dev/null +++ b/src/components/sections/Contact.js @@ -0,0 +1,19 @@ +import React from 'react'; + +import { Section, Container } from '@components/global'; + +const Contact = () => ( +

+ +

Contact Us

+ +

+ Please feel free to reach out to us in case of any issues on mailto:yoda@gmail.com +

+ +
+
+); + +export default Contact; + diff --git a/src/components/sections/Gallery.js b/src/components/sections/Gallery.js index cedb15f..ede997a 100644 --- a/src/components/sections/Gallery.js +++ b/src/components/sections/Gallery.js @@ -47,6 +47,12 @@ const GALLERY = [ image: 'darthvader.jpeg', url: 'https://twitter.com/darthvader', }, + { + name: 'Obi Wan', + image: 'obi-wan.jpg', + url: 'https://twitter.com/obiwan', + }, + ]; const Gallery = () => ( diff --git a/src/components/sections/Header.js b/src/components/sections/Header.js index 4e320b8..c2629da 100644 --- a/src/components/sections/Header.js +++ b/src/components/sections/Header.js @@ -11,12 +11,17 @@ const Header = props => (
+
-

Hi people

+
+

Hi people,

Welcome to your new Gatsby site.
Now go build something great. +

+
+ diff --git a/src/components/sections/Sponsors.js b/src/components/sections/Sponsors.js index ae36c72..5a1ed0c 100644 --- a/src/components/sections/Sponsors.js +++ b/src/components/sections/Sponsors.js @@ -28,16 +28,18 @@ const SPONSORS = [ label: 'Devfolio', link: 'https://inout.devfolio.co', }, + ]; const Sponsors = () => (
+

Sponsors

{SPONSORS.map(({ logo: Logo, label, link }) => ( - ))} diff --git a/src/images/gallery/obi-wan.jpg b/src/images/gallery/obi-wan.jpg new file mode 100644 index 0000000..c2ea15b Binary files /dev/null and b/src/images/gallery/obi-wan.jpg differ diff --git a/src/pages/index.js b/src/pages/index.js index c51d9e4..4febb44 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -10,6 +10,7 @@ import Schedule from '@sections/Schedule'; import Sponsors from '@sections/Sponsors'; import Faq from '@sections/Faq'; import Footer from '@sections/Footer'; +import Contact from '@sections/Contact'; const IndexPage = () => ( @@ -20,6 +21,7 @@ const IndexPage = () => ( +