WordPress Error, Creating a Theme Options Page

Solution:

You have missed to close } function where_now_options()

function where_now_options() {

  if ( !current_user_can( ‘manage_options’ ) )  {

    wp_die( __( ‘You do not have sufficient permissions to access this page.’ ) );

   }

  }