Merge branch 'master' of github.com:skidoodle/portfolio-v2

This commit is contained in:
skidoodle 2022-04-02 23:51:36 +02:00
commit 3afba647eb
3 changed files with 20 additions and 0 deletions

View file

@ -14,7 +14,14 @@ const Timer = () => {
return(
<div className={styles.time}>
<<<<<<< HEAD
<p><FaClock /> {date.toLocaleDateString('en-GB', { dateStyle: 'short' }) + ' • ' + date.toLocaleTimeString('en-GB', { timeStyle: 'medium', hour12: true, timeZone: 'Europe/Budapest'}).toUpperCase()}</p>
=======
<p><FontAwesomeIcon icon={['fas', 'clock']} /> {date.toLocaleString('en-GB', {
timeZone: 'Europe/Budapest',
hour12: true
}).toUpperCase()}</p>
>>>>>>> ce3c841bfc958c99053e0a03c56b5cbc56dff70f
</div>
)
}