You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0 KiB
JavaScript

/* <--- Imports ---> */
import * as React from "react"
import { Link } from "gatsby"
import { Helmet } from "react-helmet"
import Layout from '../statComponents/Layout'
/* <--- Resources ---> */
import favicon from '../resources/favicon.ico'
import logo192 from '../resources/logo192.png'
const NotFoundPage = () => {
return (
<Layout>
<Helmet htmlAttributes={{ lang: 'cs',}}>
<meta charSet="utf-8" />
<title>Ooops... - Studentská oborová rada IT PedF UK v Praze</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="icon" href={favicon}/>
<link rel="apple-touch-icon" href={logo192} />
</Helmet>
<div className="mainContent" >
<h2>Ooops... Obsah nenalezen</h2>
<p>
<Link to="/"><em>Vrátit na domovskou stránku</em></Link>
</p>
</div>
</Layout>
)
}
export default NotFoundPage