Files
qmining-page/src/components/sleep.js
T
2021-03-14 10:57:38 +01:00

25 lines
596 B
JavaScript

import constants from '../constants.json'
export default function Sleep(props) {
const hours = new Date().getHours()
if (hours < 4 || hours > 23) {
return (
<div>
<center>
<img
style={{
margin: '10px',
width: '300px',
border: '2px solid white',
}}
src={constants.siteUrl + 'img/aludni.jpeg'}
title="Ezt a képet azert látod, mert ilyenkor már igazán nem ezen az oldalon kellene járnod"
/>
</center>
</div>
)
} else {
return null
}
}