-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
42 additions
and
35 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
stubs/default/resources/views/Components/sidekick-bot-message.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<div class="flex items-start justify-end"> | ||
<div class="bg-blue-800 text-white p-4 rounded-lg w-3/4"> | ||
<p class="font-bold flex items-center gap-x-1 pb-2"> | ||
<svg class="h-5 w-5 text-white" width="24" height="24" viewBox="0 0 24 24" | ||
stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"> | ||
<path stroke="none" d="M0 0h24v24H0z"/> | ||
<path d="M4 8v-2a2 2 0 0 1 2 -2h2" /> | ||
<path d="M4 16v2a2 2 0 0 0 2 2h2" /> | ||
<path d="M16 4h2a2 2 0 0 1 2 2v2" /> | ||
<path d="M16 20h2a2 2 0 0 0 2 -2v-2" /> | ||
<line x1="9" y1="10" x2="9.01" y2="10" /> | ||
<line x1="15" y1="10" x2="15.01" y2="10" /> | ||
<path d="M9.5 15a3.5 3.5 0 0 0 5 0" /> | ||
</svg> Assistant</p> | ||
<p id="response-{{ $r }}">{{ $slot }}</p> | ||
</div> | ||
</div> |
10 changes: 10 additions & 0 deletions
10
stubs/default/resources/views/Components/sidekick-user-message.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<div class="flex items-start"> | ||
<div class="bg-gray-200 p-4 rounded-lg w-3/4"> | ||
<p class="font-bold flex items-center gap-x-1 pb-2 text-black"> | ||
<svg class="h-5 w-5 text-black" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | ||
<path stroke-linecap="round" stroke-linejoin="round" | ||
stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/> | ||
</svg> User</p> | ||
<p class="text-gray-800">{{ $slot }}</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters