This commit is contained in:
Andres
2022-06-26 19:08:48 +02:00
parent 3d2935896f
commit 494682354c
16 changed files with 237 additions and 101 deletions

View File

@@ -0,0 +1,14 @@
.error404 {
font-family: 'Montserrat', sans-serif;
font-size: 200px;
font-style: normal;
font-weight: 600;
line-height: 244px;
}
.wrapper {
align-items: center;
display: flex;
height: calc(100vh - var(--header_height));
justify-content: center;
}

View File

@@ -1,11 +1,12 @@
import React from 'react'
import s from './Error404.module.css'
const Error404 = () => {
return (
<div id={'hw5-page-404'}>
<div>404</div>
<div>Page not found!</div>
<div>/.̫ .\</div>
<div className={s.wrapper}>
<span className={s.error404}>404</span>
</div>
</div>
)
}

View File

@@ -7,7 +7,7 @@ import HW4 from '../../hw04/HW4'
function PreJunior() {
return (
<div id={'hw5-page-pre-junior'}>
pre junior page
{/*pre junior page*/}
<HW1/>
<HW2/>
<HW3/>