You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/frontend/src/404/index.tsx

21 lines
622 B

import { faEyeSlash as fasEyeSlash } from "@fortawesome/free-regular-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import React, { FunctionComponent } from "react";
import { Container } from "react-bootstrap";
export const RouterEmptyPath = "/empty-page";
const EmptyPage: FunctionComponent = () => {
return (
<Container className="d-flex flex-column align-items-center my-5">
<h1>
<FontAwesomeIcon className="mr-2" icon={fasEyeSlash}></FontAwesomeIcon>
404
</h1>
<p>The Request URL No Found</p>
</Container>
);
};
export default EmptyPage;