Files
5chan/src/components/NotFound.jsx
T

34 lines
813 B
React
Raw Normal View History

2023-03-06 18:38:33 +01:00
import React from 'react';
import { Link } from "react-router-dom";
import { Container, Header, Logo, Page, Boards, BoardsTitle } from './styles/Home.styled';
2023-03-08 11:51:57 +01:00
const NotFound = () => {
2023-03-06 18:38:33 +01:00
return (
<Container>
<Header>
<Logo>
<Link to="/">
<img alt="plebchan" src="/assets/logo/logo-transparent.png" />
</Link>
</Logo>
</Header>
<Page>
<Boards>
<BoardsTitle>
<h2 style={{textAlign: 'center'}}>404 Not Found</h2>
</BoardsTitle>
<img src="/assets/plebchan-husbando.jpg" style={{
display: "block",
margin: "auto",
padding: "15px",
width: "50%"
}}></img>
</Boards>
</Page>
</Container>
);
}
export default NotFound;