58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import React from "react";
|
|
import { RouteComponentProps, withRouter } from "react-router";
|
|
import styled from "styled-components";
|
|
import Button from "components/editorComponents/Button";
|
|
import PageUnavailableImage from "assets/images/404-image.png";
|
|
import { APPLICATIONS_URL } from "constants/routes";
|
|
|
|
const Wrapper = styled.div`
|
|
text-align: center;
|
|
margin-top: 5%;
|
|
.bold-text {
|
|
font-weight: ${props => props.theme.fontWeights[3]};
|
|
font-size: 24px;
|
|
}
|
|
.page-unavailable-img {
|
|
width: 35%;
|
|
}
|
|
.button-position {
|
|
margin: auto;
|
|
}
|
|
`;
|
|
|
|
class PageNotFound extends React.PureComponent<RouteComponentProps> {
|
|
public render() {
|
|
return (
|
|
<>
|
|
<Wrapper>
|
|
<img
|
|
src={PageUnavailableImage}
|
|
alt="Page Unavailable"
|
|
className="page-unavailable-img"
|
|
/>
|
|
<div>
|
|
<p className="bold-text">Page not found</p>
|
|
<p>
|
|
Either this page doesn't exist, or you don't have access
|
|
to <br />
|
|
this page.
|
|
</p>
|
|
<Button
|
|
filled
|
|
text="Go back to homepage"
|
|
intent="primary"
|
|
icon="arrow-right"
|
|
iconAlignment="right"
|
|
size="small"
|
|
className="button-position"
|
|
onClick={() => this.props.history.push(APPLICATIONS_URL)}
|
|
/>
|
|
</div>
|
|
</Wrapper>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withRouter(PageNotFound);
|