forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.js
More file actions
42 lines (39 loc) · 1.01 KB
/
404.js
File metadata and controls
42 lines (39 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import React from 'react';
import Layout from '../components/layout';
import PageContainer from '../components/PageContainer';
import TitleAndMetaTags from '../components/TitleAndMetaTags';
import Sadbox from '../components/Sadbox';
import { Title, TitleWrapper } from './embeds/_elements';
import Button from '../components/Button';
export default () => (
<Layout>
<TitleAndMetaTags
title={`${' Embed CodeSandbox in Docs, Blog Posts, and Websites'} - CodeSandbox`}
/>
<PageContainer width={1086}>
<TitleWrapper>
<Title> Oh no, you seem to be lost</Title>
</TitleWrapper>
<div
css={`
display: flex;
justify-content: center;
margin: 3rem 0;
`}
>
<Sadbox />
</div>
<div
css={`
display: flex;
justify-content: center;
margin-bottom: 3rem;
`}
>
<Button big href="/s">
Create a Sandbox
</Button>
</div>
</PageContainer>
</Layout>
);