so the expression for “display if the DateTime item is tomorrow” could be =dayjs().add(1, 'day').isSame(dayjs(items.YourItem.state), 'day')
so the expression for “display if the DateTime item is today or tomorrow” could be =dayjs().add(2, 'day').isAfter(dayjs(items.YourItem.state).endOf('day'))