Skip to content

Commit 7ef034c

Browse files
committed
Logo + Footer
1 parent 80f8a17 commit 7ef034c

3 files changed

Lines changed: 36 additions & 2 deletions

File tree

codriver/frontend/index.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818
<link rel="stylesheet" href="style.css">
1919
</head>
2020
<body>
21+
22+
<a href="/">
23+
<img src="https://hellenicdev.github.io/logo.webp" alt="Logo" class="site-logo">
24+
</a>
25+
26+
2127
<div class="fullscreen-container">
2228
<div class="title">Codriver: Your AI-powered Assistant</div>
2329
<div class="mic-status" id="micStatus">Listening...</div>
@@ -33,6 +39,9 @@
3339

3440
<script src="script.js"></script>
3541

36-
<p><b>© 2025 - 2026 HellenicDev <br> All Rights Reserved.</b></p>
42+
<footer style="position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; text-align: center; font-size: 14px; color: gray; background: white;
43+
">
44+
© 2025-2026 HellenicDev — All projects and content belong to HellenicDev.
45+
</footer>
3746
</body>
3847
</html>

codriver/frontend/style.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,12 @@ body {
126126
.assistant-message li {
127127
margin-bottom: 3px;
128128
}
129+
130+
.site-logo {
131+
position: fixed; /* stays visible at all times */
132+
top: 10px;
133+
left: 10px;
134+
width: 60px; /* adjust size */
135+
height: auto;
136+
z-index: 9999; /* stays above everything */
137+
}

currency-converter/templates/index.html

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
</head>
2525
<body>
2626

27+
<a href="/">
28+
<img src="https://hellenicdev.github.io/logo.webp" alt="Logo" class="site-logo">
29+
</a>
30+
2731
<div class="container">
2832
<h1>Currency Converter</h1>
2933

@@ -60,7 +64,19 @@ <h1>Currency Converter</h1>
6064

6165
<footer>© HellenicDev</footer>
6266
</div>
63-
67+
</style>
68+
<style>.site-logo {
69+
position: fixed; /* stays visible at all times */
70+
top: 10px;
71+
left: 10px;
72+
width: 60px; /* adjust size */
73+
height: auto;
74+
z-index: 9999; /* stays above everything */
75+
}</style>
6476
<script src="{{ url_for('static', filename='script.js') }}"></script>
77+
<footer style="position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; text-align: center; font-size: 14px; color: gray; background: white;
78+
">
79+
© 2025-2026 HellenicDev — All projects and content belong to HellenicDev.
80+
</footer>
6581
</body>
6682
</html>

0 commit comments

Comments
 (0)