mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-05 05:46:42 +03:00
144 lines
3.0 KiB
JavaScript
144 lines
3.0 KiB
JavaScript
import * as React from "react";
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
|
|
import ScenePage from "~/components/core/ScenePage";
|
|
import ScenePageHeader from "~/components/core/ScenePageHeader";
|
|
|
|
const STYLES_ROOT = css`
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 100vh;
|
|
text-align: center;
|
|
font-size: 1rem;
|
|
`;
|
|
|
|
// TODO(jim): Brand system colors.
|
|
const STYLES_GLITCH = css`
|
|
font-size: 120px;
|
|
position: relative;
|
|
|
|
::before,
|
|
::after {
|
|
content: "404";
|
|
right: 0;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
position: absolute;
|
|
background-color: #f7f7f7;
|
|
color: #000;
|
|
}
|
|
|
|
::before {
|
|
text-shadow: 2px 0 #00ffea;
|
|
animation: slate-client-animation-glitch 3s infinite linear;
|
|
}
|
|
|
|
::after {
|
|
text-shadow: -2px 0 #fe3a7f;
|
|
animation: slate-client-animation-glitch 2s infinite linear;
|
|
}
|
|
|
|
@keyframes slate-client-animation-glitch {
|
|
0% {
|
|
clip: rect(64px, 9999px, 66px, 0);
|
|
}
|
|
5% {
|
|
clip: rect(30px, 9999px, 36px, 0);
|
|
}
|
|
10% {
|
|
clip: rect(80px, 9999px, 71px, 0);
|
|
}
|
|
15% {
|
|
clip: rect(65px, 9999px, 64px, 0);
|
|
}
|
|
20% {
|
|
clip: rect(88px, 9999px, 40px, 0);
|
|
}
|
|
25% {
|
|
clip: rect(17px, 9999px, 79px, 0);
|
|
}
|
|
30% {
|
|
clip: rect(24px, 9999px, 26px, 0);
|
|
}
|
|
35% {
|
|
clip: rect(88px, 9999px, 26px, 0);
|
|
}
|
|
40% {
|
|
clip: rect(88px, 9999px, 80px, 0);
|
|
}
|
|
45% {
|
|
clip: rect(28px, 9999px, 51px, 0);
|
|
}
|
|
50% {
|
|
clip: rect(23px, 9999px, 40px, 0);
|
|
}
|
|
55% {
|
|
clip: rect(16px, 9999px, 86px, 0);
|
|
}
|
|
60% {
|
|
clip: rect(23px, 9999px, 94px, 0);
|
|
}
|
|
65% {
|
|
clip: rect(82px, 9999px, 39px, 0);
|
|
}
|
|
70% {
|
|
clip: rect(37px, 9999px, 92px, 0);
|
|
}
|
|
75% {
|
|
clip: rect(71px, 9999px, 52px, 0);
|
|
}
|
|
80% {
|
|
clip: rect(28px, 9999px, 74px, 0);
|
|
}
|
|
85% {
|
|
clip: rect(67px, 9999px, 96px, 0);
|
|
}
|
|
90% {
|
|
clip: rect(40px, 9999px, 88px, 0);
|
|
}
|
|
95% {
|
|
clip: rect(99px, 9999px, 61px, 0);
|
|
}
|
|
100% {
|
|
clip: rect(76px, 9999px, 77px, 0);
|
|
}
|
|
}
|
|
`;
|
|
|
|
const STYLES_MIDDLE = css`
|
|
min-height: 10%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
padding: 24px;
|
|
padding-top: 20vh;
|
|
`;
|
|
|
|
export default class SceneError extends React.Component {
|
|
render() {
|
|
return (
|
|
<WebsitePrototypeWrapper
|
|
description="The page you are looking for does not exist"
|
|
title={`${this.props.page.pageTitle} • Slate`}
|
|
url={`${Constants.hostname}${this.props.page.pathname}`}
|
|
>
|
|
<ScenePage>
|
|
<div css={STYLES_MIDDLE}>
|
|
<h1 css={STYLES_GLITCH}>404</h1>
|
|
<h2 style={{ textAlign: "center" }}>The page you are looking for does not exist</h2>
|
|
</div>
|
|
</ScenePage>
|
|
</WebsitePrototypeWrapper>
|
|
);
|
|
}
|
|
}
|