forked from colmtuite/styleguide-export
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.react.js
More file actions
27 lines (23 loc) · 833 Bytes
/
Copy path404.react.js
File metadata and controls
27 lines (23 loc) · 833 Bytes
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
import React from 'react';
import Sidebar from '~/Sidebar.react';
export default function NoMatch() {
return (
<div>
<Sidebar />
<div style={{ paddingLeft: '20%' }}>
<div
className="padding-xl marginLeftRight-m"
style={{ maxWidth: '960px' }}>
<div className="marginTop-l marginBottom-m">
<h1 className="fontSize-xxxl">
Page not found
</h1>
</div>
<p className="lineHeight-l fontSize-l fontWeight-3 c-silver">
The page you’re looking for could have been deleted or never have existed.
</p>
</div>
</div>
</div>
);
}