mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
25 lines
612 B
JavaScript
25 lines
612 B
JavaScript
import React from 'react'
|
|
import constants from '../constants'
|
|
|
|
export default function Sleep() {
|
|
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
|
|
}
|
|
}
|