Generate welcome controller and set up root path
diff --git a/app/controllers/welcome_controller.rb b/app/controllers/welcome_controller.rb
new file mode 100644
index 0000000..f9b859b
--- /dev/null
+++ b/app/controllers/welcome_controller.rb
@@ -0,0 +1,4 @@
+class WelcomeController < ApplicationController
+  def index
+  end
+end
diff --git a/app/views/welcome/index.html.slim b/app/views/welcome/index.html.slim
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/views/welcome/index.html.slim
diff --git a/config/routes.rb b/config/routes.rb
index fc2791d..e5cf4cb 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,4 +1,7 @@
 Rails.application.routes.draw do
+  get 'welcome/index'
+
+  root 'welcome#index'
   devise_for :users
   # The priority is based upon order of creation: first created -> highest priority.
   # See how all your routes lay out with "rake routes".