Files
sure/app/views/shared/_demo_warning.html.erb
Juan José Mata 94e87a8b85 Demo warning in /chat UI (#466)
* Add demo warning to /chat

* Missed two files!

* Function calling works now, update message
2025-12-19 16:30:21 +01:00

14 lines
502 B
Plaintext

<%# locals: title:, message: %>
<div class="mb-4 rounded-lg border bg-blue-50 text-blue-700 border-blue-200 theme-dark:bg-blue-900/20 theme-dark:text-blue-400 theme-dark:border-blue-800 p-4" role="status" aria-live="polite">
<div class="flex items-start gap-3">
<div class="shrink-0">
<%= icon "info", size: "sm", color: "blue-600" %>
</div>
<div class="flex-1 text-sm">
<h3 class="font-semibold mb-1"><%= title %></h3>
<p><%= message %></p>
</div>
</div>
</div>