Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Commit

Permalink
Update error404.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivaBhattacharjee committed Jun 19, 2023
1 parent 178b53b commit ae3d908
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions src/Components/error404.jsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
import React from "react";
import error from "../img/error.png";
import Footer from "./Footer"
import { Link } from "react-router-dom";
import { Helmet } from "react-helmet";

function Error404() {
return (
<>
<section className="error">
<div className="error-container">
<div className="error-img">
<img src={error} alt="error-vector" />
</div>
<div className="error-text-field">
<h1>404</h1>
<span>Looks like you are lost</span>
<span>The page you are looking for could not be found</span>
<Link to={'/'}>Homepage</Link>
</div>
<Helmet>
<title>Error 404 could not find the page</title>
</Helmet>
<section className="error-page">
<div className="error-background">
<h1>404</h1>
</div>
<div className="error-texts">
<span className="top-error-heading">Welcome to <span>the 404 dimension</span></span>
<h1 className="error-description">You have discovered a new dimension</h1>
<span className="bottom-error-heading">But unfortunately, this dimension has nothing at all</span>
<button>Go back to the old dimension</button>
</div>
</section>
<Footer />
</>
)
}
export default Error404;
export default Error404;

1 comment on commit ae3d908

@vercel
Copy link

@vercel vercel bot commented on ae3d908 Jun 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.