Spaces:
Running
Running
Your Name Claude Haiku 4.5 commited on
Commit ·
33a6f15
1
Parent(s): 04ff374
Add new brand logo as favicon and navbar icon
Browse files- Set logo SRT.png as browser favicon
- Replace generic SVG icon with actual brand logo in navbar
- Logo now serves as the brand signature across the app
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
- web/static/index.html +4 -5
web/static/index.html
CHANGED
|
@@ -5,6 +5,9 @@
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
<title>RT Caption Generator</title>
|
| 7 |
|
|
|
|
|
|
|
|
|
|
| 8 |
<!-- Tailwind CSS (CDN) -->
|
| 9 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
<script>
|
|
@@ -197,11 +200,7 @@
|
|
| 197 |
<div class="flex items-center justify-between h-20">
|
| 198 |
<!-- Logo / Brand -->
|
| 199 |
<div class="flex items-center gap-3 animate-fade-in">
|
| 200 |
-
<
|
| 201 |
-
<svg class="w-6 h-6 text-white" fill="currentColor" viewBox="0 0 24 24">
|
| 202 |
-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"/>
|
| 203 |
-
</svg>
|
| 204 |
-
</div>
|
| 205 |
<div>
|
| 206 |
<h1 class="text-xl font-bold text-white hidden sm:block bg-gradient-to-r from-blue-400 to-purple-400 bg-clip-text text-transparent">
|
| 207 |
Caption Generator
|
|
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
<title>RT Caption Generator</title>
|
| 7 |
|
| 8 |
+
<!-- Favicon -->
|
| 9 |
+
<link rel="icon" type="image/png" href="/static/logo SRT.png">
|
| 10 |
+
|
| 11 |
<!-- Tailwind CSS (CDN) -->
|
| 12 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 13 |
<script>
|
|
|
|
| 200 |
<div class="flex items-center justify-between h-20">
|
| 201 |
<!-- Logo / Brand -->
|
| 202 |
<div class="flex items-center gap-3 animate-fade-in">
|
| 203 |
+
<img src="/static/logo SRT.png" alt="RT Caption Generator" class="h-12 w-12 rounded-lg shadow-lg object-cover">
|
|
|
|
|
|
|
|
|
|
|
|
|
| 204 |
<div>
|
| 205 |
<h1 class="text-xl font-bold text-white hidden sm:block bg-gradient-to-r from-blue-400 to-purple-400 bg-clip-text text-transparent">
|
| 206 |
Caption Generator
|