From 5dfa5875eec873512d695dc9624898789be11ade Mon Sep 17 00:00:00 2001 From: Nico Athanassiadis <nico@dsv.su.se> Date: Fri, 7 Mar 2025 10:06:59 +0100 Subject: [PATCH] Powered with Whisper AI Added text under the Seshat Audio Transcriber heading so that users know that the application uses whisper ai. The text is also clickable and opens a new tab or window that goes to https://openai.com/index/whisper if the users wants to learn more about whisper ai. --- src/main/resources/static/css/styles.css | 19 +++++++++++++------ .../resources/templates/file-management.html | 5 +++++ 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/src/main/resources/static/css/styles.css b/src/main/resources/static/css/styles.css index 57fd3bb..7f8f0f0 100644 --- a/src/main/resources/static/css/styles.css +++ b/src/main/resources/static/css/styles.css @@ -2,12 +2,19 @@ --bs-primary-rgb: 0, 47, 95; --bs-btn-bg: #002F5F; } -/* Sticky footer layout */ -/* Header Styling */ -.header { - display: flex; - align-items: center; - justify-content: space-between; + +.header-link { + color: white; + text-decoration: none; + font-size: 0.8rem; +} + +.header-link:hover { + text-decoration: underline; +} + +.header-link:visited { + color: white; } .header .app-title { diff --git a/src/main/resources/templates/file-management.html b/src/main/resources/templates/file-management.html index b32d62b..c16db8e 100644 --- a/src/main/resources/templates/file-management.html +++ b/src/main/resources/templates/file-management.html @@ -24,6 +24,11 @@ </ul> </div> </div> + <div class="container text-center"> + <span class="span-small"> + <a href="https://openai.com/index/whisper/" target="_blank" class="header-link">Powered with Whisper AI</a> + </span> + </div> </header> <main class="container mt-4">