npm packages update

This commit is contained in:
mrfry 2023-03-09 16:31:34 +01:00
parent ed507dc39f
commit 32522097c0
51 changed files with 3247 additions and 5187 deletions

View file

@ -1,25 +0,0 @@
import React from 'react'
import constants from '../constants.json'
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
}
}