+ Universes are a convenient way to organize your notebook pages into separate worlds.
+ You can click EXPAND on any universe below to filter your notebook to just that universe —
+ and focus on just the world you're working on.
+
+
\ No newline at end of file
diff --git a/config/routes.rb b/config/routes.rb
index 3da255e5..00861b83 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -92,11 +92,14 @@ Rails.application.routes.draw do
resources :folders, only: [:create, :update, :destroy, :show]
scope '/my' do
- get '/content', to: 'main#dashboard', as: :dashboard
+ get '/dashboard', to: 'main#dashboard', as: :dashboard
+ get '/content', to: 'main#table_of_contents', as: :table_of_contents
get '/content/recent', to: 'main#recent_content', as: :recent_content
get '/content/deleted', to: 'content#deleted', as: :recently_deleted_content
get '/prompts', to: 'main#prompts', as: :prompts
+ get '/multiverse', to: 'universes#hub', as: :multiverse
+
get '/scratchpad', to: 'main#notes', as: :notes
get 'tag/remove', to: 'page_tags#remove'