diff --git a/app/controllers/main_controller.rb b/app/controllers/main_controller.rb
index d59de199..78479049 100644
--- a/app/controllers/main_controller.rb
+++ b/app/controllers/main_controller.rb
@@ -4,6 +4,7 @@ class MainController < ApplicationController
layout 'tailwind/landing', only: [
:index, :about_notebook, :for_writers, :for_roleplayers, :for_friends
]
+ layout 'tailwind', only: [:prompts]
before_action :authenticate_user!, only: [:dashboard, :prompts, :notes, :recent_content]
before_action :cache_linkable_content_for_each_content_type, only: [:dashboard, :prompts]
diff --git a/app/views/main/prompts.html.erb b/app/views/main/prompts.html.erb
index 9cc09e19..44da65cd 100644
--- a/app/views/main/prompts.html.erb
+++ b/app/views/main/prompts.html.erb
@@ -1,102 +1,56 @@
-<% if current_user.content_count > 0 && @content %>
-
-
- Don't forget! You can press @ when typing to link to any of your other pages. -
- -- <% if current_user.content_count.zero? %> - Once you've created some ideas in Notebook.ai, you can visit this page for writing prompts set in your world. - They'll star your characters, in your locations, using your items, seeing your creatures, practicing your religions, and so on — so check back frequently for the latest prompts just for you! - <% else %> - It looks like - <% if @universe_scope.present? %> - <%= link_to @universe_scope.name, @universe_scope %> - <% else %> - your world - <% end %> - is pretty fleshed out already, and you've answered all the questions I've come up with so far. - Check back later and I might have a writing prompt for you, but I bet I can come up with some sooner if you - <% new_content = (current_user.createable_content_types - [Universe]).sample %> - <%= link_to new_polymorphic_path(new_content) do %> - create - <% if current_user.send(new_content.name.downcase.pluralize).any? %> - another - <% else %> - <%= %w(a e i o u).include?(new_content.name.downcase[0]) ? 'an' : 'a' %> +
+ <%= @content.description %> +
++ Don't forget: you can mention any of your other pages by typing @ in the text box. +
+ + <%= button_tag(type: 'submit', class: "text-white bg-notebook-blue border-0 py-2 px-8 focus:outline-none hover:bg-blue-500 rounded text-lg") do %> + Save answer <% end %> - <%= new_content.name.downcase %>! <% end %> - <% end %> - -<% end %> \ No newline at end of file +