-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path404.js
More file actions
27 lines (24 loc) · 780 Bytes
/
404.js
File metadata and controls
27 lines (24 loc) · 780 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 styled from "styled-components";
import { Helmet, Layout } from "ui/partials";
const Iframe = styled.iframe`
overflow: hidden;
border: 0;
`;
export default function ErrorPage(props) {
return (
<>
<Helmet {...props} title="Error" />
<Layout {...props}>
<h1>You'd think there would be something more interesting here.</h1>
<Iframe
title="Background music"
width="1"
height="1"
allow="autoplay"
src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/348238181&color=%23ff5500&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"
/>
</Layout>
</>
);
}