main
Last change
on this file since 9bf1f8d was 8d83180, checked in by unknown <mlviktor23@…>, 2 years ago |
forums/page nav
|
-
Property mode
set to
100644
|
File size:
644 bytes
|
Line | |
---|
1 | import React from "react";
|
---|
2 | import { MainWrapper } from "../Components/Styled/Main.style";
|
---|
3 | import { MainTitle } from "../Components/Styled/Main.style";
|
---|
4 |
|
---|
5 | const 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 |
|
---|
23 | export default NotFound;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.