in the routes file
Rails.application.routes.draw do
root 'pages#home'
get 'about', to: 'pages#about'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end
But when I type the URL it generates a problem as in the figure below;
Did I type something wrong in the routes file?