Added 404 page and Layout component
parent
902c2ae3c7
commit
c4f3ae4390
@ -0,0 +1,12 @@
|
|||||||
|
import Navbar from "./Navbar";
|
||||||
|
import Footer from "./Footer";
|
||||||
|
|
||||||
|
const Layout = ({ children }) => (
|
||||||
|
<>
|
||||||
|
<Navbar />
|
||||||
|
{children}
|
||||||
|
<Footer />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default Layout;
|
@ -0,0 +1,12 @@
|
|||||||
|
import Page from "../components/Page";
|
||||||
|
import Layout from "../components/Layout";
|
||||||
|
|
||||||
|
const Upload = () => (
|
||||||
|
<Page title="Upload" description="Upload a custom file to the cdn">
|
||||||
|
<Layout>
|
||||||
|
<div className="container upload"></div>
|
||||||
|
</Layout>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default Upload;
|
@ -1 +1,2 @@
|
|||||||
Disallow /binas
|
Disallow /binas
|
||||||
|
Disallow /upload
|
@ -0,0 +1,3 @@
|
|||||||
|
.upload {
|
||||||
|
padding-top: 6rem;
|
||||||
|
}
|
Loading…
Reference in new issue