This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
48 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
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 |
---|---|---|
@@ -1,28 +1,28 @@ | ||
import React from 'react' | ||
import {Row,Col,Button} from 'react-bootstrap' | ||
import { Row, Col, Button } from 'react-bootstrap' | ||
import { LinkContainer } from 'react-router-bootstrap' | ||
|
||
function Error404Screen() { | ||
return ( | ||
<> | ||
<br /> | ||
<center className='mt-5 '> | ||
<Row className='g-0 d-flex align-items-center'> | ||
<br /> | ||
<center className="mt-5 "> | ||
<Row className="g-0 d-flex align-items-center"> | ||
<Col xs={5} md={6}> | ||
<div className="text-dark display-1 float-end">404</div> | ||
<div className="text-dark display-1 float-end">404</div> | ||
</Col> | ||
<Col xs={7} md={6}> | ||
<p className="text-dark float-start pt-2 pt-md-3"><b>Page not found</b></p> | ||
<p className="text-dark float-start pt-2 pt-md-3"> | ||
<b>Page not found</b> | ||
</p> | ||
</Col> | ||
</Row> | ||
<LinkContainer to="/"> | ||
<Button className='mt-1 px-5'> | ||
Take me home | ||
</Button> | ||
<Button className="mt-1 px-5">Take me home</Button> | ||
</LinkContainer> | ||
</center> | ||
</> | ||
) | ||
} | ||
|
||
export default Error404Screen | ||
export default Error404Screen |
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