Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +8 -2
templates/index.html
CHANGED
|
@@ -10,12 +10,18 @@
|
|
| 10 |
<div class="chat-container">
|
| 11 |
<div class="chat-header">🍳 Chef Bot</div>
|
| 12 |
<div class="chat-messages" id="chatMessages">
|
| 13 |
-
<div class="bot-message">Hi there! I'm Chef Bot!
|
| 14 |
</div>
|
| 15 |
<div class="chat-input">
|
| 16 |
-
<input type="text" id="userInput" placeholder="Type
|
| 17 |
<button onclick="sendMessage()">Send</button>
|
| 18 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</div>
|
| 20 |
<script src="/static/script.js"></script>
|
| 21 |
</body>
|
|
|
|
| 10 |
<div class="chat-container">
|
| 11 |
<div class="chat-header">🍳 Chef Bot</div>
|
| 12 |
<div class="chat-messages" id="chatMessages">
|
| 13 |
+
<div class="bot-message">Hi there! I'm Chef Bot! Start typing to find menu items or explore below.</div>
|
| 14 |
</div>
|
| 15 |
<div class="chat-input">
|
| 16 |
+
<input type="text" id="userInput" placeholder="Type a menu item (e.g., chicken)...">
|
| 17 |
<button onclick="sendMessage()">Send</button>
|
| 18 |
</div>
|
| 19 |
+
<!-- Suggestions Area -->
|
| 20 |
+
<div class="suggestions-list" id="suggestionsList"></div>
|
| 21 |
+
<!-- Menu Items Area -->
|
| 22 |
+
<div class="ingredients-list" id="menuItemsList"></div>
|
| 23 |
+
<!-- Selected Item Details -->
|
| 24 |
+
<div class="selected-ingredients" id="itemDetails"></div>
|
| 25 |
</div>
|
| 26 |
<script src="/static/script.js"></script>
|
| 27 |
</body>
|