-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #213 from PratikMane0112/404ErrorPge
Updated 404 error page
- Loading branch information
Showing
4 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from 'react'; | ||
import backgroundImage from '../../../assets/Landing-Page-Assets/ErrorImage.png'; | ||
|
||
const Error = () => { | ||
return ( | ||
<div | ||
className="flex justify-center items-center h-screen bg-cover bg-center text-center text-black" | ||
style={{ backgroundImage: `url(${backgroundImage})` }} | ||
> | ||
<div className="p-5 rounded-lg md:p-20 w-11/12 md:w-auto bg-opacity-75"> | ||
<p className="text-white text-2xl md:text-4xl mb-8">Coming soon ...</p> | ||
<div className="text-white mt-8 flex justify-center gap-7"> | ||
<a | ||
href="/" | ||
className="flex justify-center items-center text-lg px-5 py-3 font-semibold tracking-wide leading-5 text-white whitespace-nowrap hover:border hover:bg-transparent cursor-pointer hover:border-[#408ACD] bg-[#408ACD] rounded-[10px]" | ||
> | ||
Home Page | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Error; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import ErrorPageContainer from '../Components/Pages/Error-Page/ErrorPage'; | ||
|
||
const ErrorPage = () => { | ||
return ( | ||
<div> | ||
<ErrorPageContainer /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default ErrorPage; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.