Skip to content

Commit 3a8b091

Browse files
authored
Update shoutouts.html
1 parent 455f849 commit 3a8b091

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

shoutouts.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
66
<title>Shoutouts & Recognition | Commit Intranet</title>
77
<link rel="stylesheet" href="css/styles.css" />
8+
<link rel="stylesheet" href="js/ai-assistant.js" />
89
</head>
910
<body>
1011
<div class="layout">
@@ -142,5 +143,25 @@ <h3>Give a Shoutout</h3>
142143
if (picker) picker.remove();
143144
});
144145
</script>
146+
147+
</script>
148+
<!-- AI Assistant Bubble -->
149+
<div id="ai-chat-widget">
150+
<button id="ai-toggle" aria-label="Open AI Assistant">🤖</button>
151+
<div id="ai-chat-window" style="display: none;">
152+
<div class="ai-chat-header">
153+
<span>Commit AI Assistant</span>
154+
<button id="ai-close">×</button>
155+
</div>
156+
<div class="ai-chat-body" id="ai-messages"></div>
157+
<textarea id="ai-user-input" placeholder="Ask a question..."></textarea>
158+
<button id="ai-send">Send</button>
159+
</div>
160+
</div>
161+
162+
<!-- Scripts -->
163+
<script src="js/loadPartials.js"></script>
164+
<script src="js/ai-assistant.js" defer></script>
165+
145166
</body>
146167
</html>

0 commit comments

Comments
 (0)