routes.rb 164 B

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