source: reactapp/src/Pages/NotFound.js@ 8d83180

main
Last change on this file since 8d83180 was 8d83180, checked in by unknown <mlviktor23@…>, 21 months ago

forums/page nav

  • Property mode set to 100644
File size: 644 bytes
Line 
1import React from "react";
2import { MainWrapper } from "../Components/Styled/Main.style";
3import { MainTitle } from "../Components/Styled/Main.style";
4
5const NotFound = () => {
6 return (
7 <MainWrapper>
8 <style>
9 {
10 "body { background-color: papayawhip;} * {margin: 0; padding: 0; box-sizing: border-box;}"
11 }
12 </style>
13 <a href="/">
14 <MainTitle>profesori.mk</MainTitle>
15 </a>{" "}
16 <div style={{ marginTop: "140px" }}>
17 <h1 style={{ textAlign: "center" }}>Страницата не е пронајдена.</h1>
18 </div>
19 </MainWrapper>
20 );
21};
22
23export default NotFound;
Note: See TracBrowser for help on using the repository browser.