Files
sure/app/views/chats/new.html.erb
Alex Hatzenbuhler b719a8b80d Add new ai chat button, tweak ai navigation (#2272)
* Add new chat button

* Tweak chat navigation

* Fix chat nav padding on new chat

* Make the button nicer

* Fix bad tailwind class

* Use menu icon instead of left

* Fix path
2025-05-22 11:38:05 -04:00

12 lines
284 B
Plaintext

<%= turbo_frame_tag chat_frame do %>
<div class="flex flex-col h-full md:p-4">
<%= render "chats/chat_nav", chat: @chat %>
<div class="mt-auto py-8">
<%= render "chats/ai_greeting" %>
</div>
<%= render "messages/chat_form", chat: @chat %>
</div>
<% end %>