import { h } from 'preact' import { H1 } from './src/components/Text' import Page from './src/layouts/Page' export default () => (

LANGING PAGE

) // useEffect(() => { // if (calData && calData.length) { // calData.forEach((stream, index) => { // const utcStartDate = zonedTimeToUtc( // new Date(stream.start), // 'Europe/Berlin' // ) // const utcEndDate = zonedTimeToUtc(new Date(stream.end), 'Europe/Berlin') // const { timeZone } = Intl.DateTimeFormat().resolvedOptions() // const zonedStartDate = utcToZonedTime(utcStartDate, timeZone) // const zonedEndDate = utcToZonedTime(utcEndDate, timeZone) // if ( // isWithinInterval(new Date(), { // start: subHours(zonedStartDate, 1), // end: addHours(zonedEndDate, 1), // }) // ) { // setCurrentVideo(stream) // } // if ( // isWithinInterval(new Date(), { // start: zonedStartDate, // end: zonedEndDate, // }) // ) { // setStreamIsLive(true) // } // }) // } // }, [calData, eventsData, eventsLoading])