Skip to content

Commit

Permalink
feat(page): 404
Browse files Browse the repository at this point in the history
  • Loading branch information
prvnbist committed Jan 11, 2020
1 parent fcaeb9f commit 4577f5a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/pages/404.jsx
@@ -0,0 +1,20 @@
import React from 'react'

import Layout from '../sections/Layout'

const NotFound = () => {
return (
<Layout
meta={{
title: 'Praveen Bisht | Software Engineer',
description:
"Hey👋🏼, I’m Praveen, a software engineer based in New Delhi who enjoys building apps from idea to implementation. I've experience with both design & development(front-end & back-end).",
keywords:
'front end, back end, design, html, pug, css, scss, javascript, nodejs, reactjs, graphql, expressjs, mongoose, mongodb, gatsby, figma, design, user interface, user experience'
}}>
404!
</Layout>
)
}

export default NotFound

0 comments on commit 4577f5a

Please sign in to comment.