mirror of
https://github.com/we-promise/sure.git
synced 2026-04-13 00:57:22 +00:00
* 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
12 lines
284 B
Plaintext
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 %>
|