Compare commits

...

1 Commits

Author SHA1 Message Date
NinjaHeaven 969028a536 First Commit 2020-01-13 23:51:54 +01:00
4 changed files with 17 additions and 3 deletions

BIN
src/Error.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

BIN
src/Error.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

7
src/NavbarError.css Normal file
View File

@ -0,0 +1,7 @@
.centered{
text-align: center;
}
.loli-not-found{
height: 300px;
width: 300px; /*modifica la dimensione dell'immagine come ritieni opportuno*/
}

View File

@ -1,12 +1,19 @@
import React from 'react';
import Navbar from './Navbar';
class NotFound extends React.Component {
class NotFound extends React.Component { //non mi caricava l'immagine il server quindi non so se le modifiche che ho fatto funzionano sull'immagine spero di si
render() {
return (
<>
<Navbar brand="LORDNABBO" />
<div><h1>I MEME 404</h1></div>
<Navbar brand="LORD//404" />
<div class="container">
<h1 class="header">
SwEMBRA CHwE QwUALCwOSA SwIA ANDwATO STwORTwO NYAN! UwU
<div class="container centered loli-not-found">
<img src="Error.png" alt="ragazza anime molto carina"></img>
</div>
</h1>
</div>
</>
);
}