routes.rb 145 B

123456
  1. Rails.application.routes.draw do
  2. root 'static_pages#home'
  3. get '/home', to: 'static_pages#home'
  4. get '/about', to: 'static_pages#about'
  5. end