This will add a simple widget which displays just a small message.
add_action('wp_dashboard_setup', 'register_my_dashboard_widgets');
function register_my_dashboard_widgets() {
wp_add_dashboard_widget('myInfo_widget', 'Important Information', 'display_infoWidget');
}
function display_infoWidget() {
echo '<p>At the first of february this site gets a new design.
Therefore is wont be available this day. To see the current progress you can visit
<a href="/?originalUrl=https%3A%2F%2Friptutorial.com%2F%26quot%3Bhttp%3A%2F%2Fwww.justanexample.com%26quot%3B%2520%26gt%3Bthis%2520site%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fp%26gt%3B";
}