You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: consolidate Try buttons into single dropdown menu
Replace three separate Try buttons (HuggingChat, Poe, Google AI) with
a single "Try this Skill" dropdown button that shows all options in
a Bootstrap dropdown menu.
<buttononclick="tryOnHuggingChat('{{ $rawUrl }}')" class="btn btn-warning" style="display: inline-flex; align-items: center; gap: 0.5rem;" title="Open in HuggingChat with skill pre-loaded (free)">
21
-
<iclass="fa fa-play"></i> Try on HuggingChat
22
-
</button>
23
-
<buttononclick="tryOnPoe('{{ $rawUrl }}')" class="btn btn-outline-warning" style="display: inline-flex; align-items: center; gap: 0.5rem;" title="Open in Poe with skill pre-loaded (free)">
24
-
<iclass="fa fa-play"></i> Try on Poe
25
-
</button>
26
-
<buttononclick="tryOnGoogleAI('{{ $rawUrl }}')" class="btn btn-outline-warning" style="display: inline-flex; align-items: center; gap: 0.5rem;" title="Open in Google AI Studio with skill pre-loaded (free)">
<li><aclass="dropdown-item" href="#" onclick="tryOnGoogleAI('{{ $rawUrl }}'); return false;"><iclass="fa fa-google"></i> Google AI Studio (free)</a></li>
0 commit comments