以下のルーティング設定で、`http://localhost:3000`にアクセスしたときに表示されるページはどれですか? ```ruby Rails.application.routes.draw do root 'static_pages#home' get 'about', to: 'static_pages#about' end ```