-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description Detail improvements to the websat UI: - More consistent color schemes - Transparent default logo and favicon - Change font - Adjust button and text box sizing - Color highlights on focus for buttons and text boxes - Switch to Tailwind.css for base CSS ![image](https://github.com/NeonGeckoCom/neon-iris/assets/30268971/1a9aa5c9-f8a7-4f29-a0d0-1a8e83273e9e) # Issues N/A --------- Co-authored-by: mikejgray <[email protected]>
- Loading branch information
Showing
9 changed files
with
83 additions
and
192 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -127,3 +127,5 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
.DS_Store |
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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
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 |
---|---|---|
@@ -1,42 +1,84 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html lang="en" class="dark"> | ||
<head> | ||
<link rel="icon" href="/static/custom/favicon.ico" type="image/x-icon" /> | ||
<link rel="icon" href="static/custom/favicon.ico" type="image/x-icon" /> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>{{ title }}</title> | ||
<link rel="stylesheet" href="/static/styles.css" /> | ||
<link rel="stylesheet" href="/static/sprite.css" /> | ||
<link rel="stylesheet" href="static/styles.css" /> | ||
<link rel="stylesheet" href="static/sprite.css" /> | ||
<link | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" | ||
rel="stylesheet" | ||
/> | ||
<style> | ||
:root { | ||
--color-neon-green: #2b7b2b; | ||
--color-neon-orange: #ffa764; | ||
--color-neon-beige: #ebd4b3; | ||
--color-neon-gray: #fefefe; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="chat-container"> | ||
<div class="chat-header"> | ||
{{ description }} <img src="/static/custom/logo.webp" class="logo" /> | ||
|
||
<body class="font-roboto text-center bg-gray-900 text-white"> | ||
<div class="chat-container flex flex-col min-h-screen"> | ||
<div class="chat-header text-4xl font-bold p-6 bg-gray-800 shadow-md"> | ||
{{ description }} | ||
<img | ||
src="static/custom/logo.svg" | ||
class="logo w-10 h-10 ml-2 inline-block" | ||
/> | ||
</div> | ||
<button id="startButton">Start Recording</button> | ||
<div class="chat-window" id="chatWindow"> | ||
<div id="chatHistory"> | ||
<button | ||
id="startButton" | ||
class="btn mx-auto my-6 px-6 py-3 rounded shadow-lg text-white transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-blue-700 bg-blue-500" | ||
> | ||
Start Recording | ||
</button> | ||
<div | ||
class="chat-window flex flex-col flex-grow max-h-full overflow-hidden md:max-h-3/4" | ||
> | ||
<div | ||
id="chatHistory" | ||
class="flex flex-col items-start space-y-2 overflow-y-auto p-4" | ||
> | ||
<!-- Chat messages will appear here --> | ||
</div> | ||
</div> | ||
<div id="download-area"></div> | ||
<div class="input-area"> | ||
<input type="text" id="chatInput" placeholder="{{ placeholder }}" /> | ||
<button onclick="submitMessage()">Submit</button> | ||
<div id="download-area" class="p-4 bg-gray-800 hidden"> | ||
<!-- Downloadable content or hidden if not needed --> | ||
</div> | ||
<div | ||
class="input-area flex justify-between items-center p-4 space-x-4 bg-gray-800" | ||
> | ||
<input | ||
type="text" | ||
id="chatInput" | ||
placeholder="{{ placeholder }}" | ||
class="flex-grow px-4 py-3 rounded bg-gray-600 text-white focus:outline-none focus:ring-2 focus:ring-green-700" | ||
/> | ||
<button | ||
onclick="submitMessage()" | ||
class="px-6 py-3 rounded shadow-lg text-white transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-orange-700 dark:bg-neon-orange" | ||
style="background-color: var(--color-neon-orange)" | ||
> | ||
Submit | ||
</button> | ||
<div class="sprite" /> | ||
</div> | ||
</div> | ||
<!-- Silero VAD --> | ||
<script src="https://cdn.jsdelivr.net/npm/onnxruntime-web/dist/ort.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@ricky0123/[email protected]/dist/bundle.min.js"></script> | ||
<!-- Config --> | ||
<script> | ||
const WS_URL = "{{ ws_url }}"; | ||
</script> | ||
<!-- AI Code --> | ||
<script src="static/scripts/websocket.js"></script> | ||
<script src="static/scripts/audio.js"></script> | ||
<script src="static/scripts/ui.js"></script> | ||
<script src="static/scripts/sprite.js"></script> | ||
</body> | ||
<!-- Silero VAD --> | ||
<script src="https://cdn.jsdelivr.net/npm/onnxruntime-web/dist/ort.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@ricky0123/[email protected]/dist/bundle.min.js"></script> | ||
<!-- Config --> | ||
<script> | ||
const WS_URL = "{{ ws_url }}"; | ||
</script> | ||
<!-- AI Code --> | ||
<script src="/static/scripts/websocket.js"></script> | ||
<script src="/static/scripts/audio.js"></script> | ||
<script src="/static/scripts/ui.js"></script> | ||
<script src="/static/scripts/sprite.js"></script> | ||
</html> |
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