-
Notifications
You must be signed in to change notification settings - Fork 14
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 #94 from adityasimant/main
Update Changes
- Loading branch information
Showing
9 changed files
with
88 additions
and
14 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,61 @@ | ||
import React, { Component } from 'react'; | ||
import { Container, Row } from 'react-bootstrap'; | ||
import { | ||
AiOutlineHome | ||
} from "react-icons/ai"; | ||
import errorimg from "../assets/page_not_found.svg" | ||
import Button from "react-bootstrap/Button"; | ||
import Home from './Home'; | ||
|
||
|
||
class Error extends Component { | ||
render() { | ||
return ( | ||
<Container fluid className="home-about-section" id="about"> | ||
<Container> | ||
<Row className="home-about-description" style={{ textAlign: "center", marginTop: "50px", padding:"40px", }}> | ||
<h1 className="project-heading" > | ||
Invaild Page requested! | ||
</h1> | ||
<p style={{textAlign:"center", paddingTop:"20px"}}>Make sure you are following the correct URL!</p> | ||
</Row> | ||
<Row> | ||
<img | ||
src={errorimg} | ||
alt="Join pic" | ||
style={{ maxHeight: "190px", | ||
background: "#ffffff", | ||
padding:"30px", | ||
margin:"50px", | ||
marginLeft: "auto", | ||
marginRight: "auto", | ||
maxWidth:"400px" | ||
}} | ||
className="iete-join-logo img-fluid main-iete-logo" | ||
/> | ||
</Row> | ||
<Row> | ||
<Button | ||
className="button-join " | ||
href='/' | ||
style={{ | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
width: "200px", | ||
marginLeft: "auto", | ||
marginRight: "auto", | ||
marginTop: "15px" | ||
}} | ||
> | ||
<AiOutlineHome /> | ||
Homepage | ||
</Button> | ||
</Row> | ||
</Container> | ||
</Container> | ||
); | ||
} | ||
} | ||
|
||
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
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
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