Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.17.183.187
import React, { Component } from "react";
import { Link } from "react-router-dom";
export class Error404 extends Component {
render() {
return (
<div>
<div className="d-flex align-items-center text-center error-page bg-primary pt-5 pb-4 h-100">
<div className="row flex-grow">
<div className="col-lg-8 mx-auto text-white">
<div className="row align-items-center d-flex flex-row">
<div className="col-lg-6 text-lg-right pr-lg-4">
<h1 className="display-1 mb-0">404</h1>
</div>
<div className="col-lg-6 error-page-divider text-lg-left pl-lg-4">
<h2>SORRY!</h2>
<h3 className="font-weight-light">
The page you’re looking for was not found.
</h3>
</div>
</div>
<div className="row mt-5">
<div className="col-12 text-center mt-xl-2">
<Link className="text-white font-weight-medium" to="/">
Back to home
</Link>
</div>
</div>
</div>
</div>
</div>
</div>
);
}
}
export default Error404;
|