Skip to content

Commit c458a93

Browse files
committed
Evil isn't all bad.
1 parent be35a7a commit c458a93

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

docs/index.html

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="en" data-theme="dark">
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta name="description" content="RadioBrowser Windows - A modern desktop application for browsing and streaming radio stations. Built with Kotlin Multiplatform and Compose Desktop.">
7+
<meta name="google-site-verification" content="hRsJBUoU1jA6KEGFSo-OCJGlrczQlXEiOtdEFci4lj4" />
78
<meta name="keywords" content="radio browser, kotlin, desktop app, radio streaming, compose desktop">
89
<meta name="author" content="Aria Danesh">
910
<title>RadioBrowser Windows - Modern Radio Streaming App</title>
@@ -26,6 +27,7 @@
2627
--background-color: #121212;
2728
--text-color: #ffffff;
2829
--card-background: #1E1E1E;
30+
--footer-background: #1a1a1a;
2931
}
3032

3133
* {
@@ -222,7 +224,7 @@
222224
}
223225

224226
footer {
225-
background-color: #333;
227+
background-color: var(--footer-background);
226228
color: white;
227229
padding: 40px 0;
228230
text-align: center;
@@ -346,19 +348,19 @@ <h3>Fast & Reliable</h3>
346348
<h2 class="animate__animated animate__fadeIn">Tech Stack</h2>
347349
<div class="tech-grid">
348350
<div class="tech-item animate__animated animate__fadeInUp">
349-
<i class="fab fa-kotlin tech-icon"></i>
351+
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/kotlin/kotlin-original.svg" alt="Kotlin" class="tech-icon" style="width: 48px; height: 48px;">
350352
<span>Kotlin</span>
351353
</div>
352354
<div class="tech-item animate__animated animate__fadeInUp" style="animation-delay: 0.1s">
353-
<i class="fab fa-java tech-icon"></i>
355+
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/java/java-original.svg" alt="Java" class="tech-icon" style="width: 48px; height: 48px;">
354356
<span>Java</span>
355357
</div>
356358
<div class="tech-item animate__animated animate__fadeInUp" style="animation-delay: 0.2s">
357-
<i class="fas fa-desktop tech-icon"></i>
359+
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/android/android-original.svg" alt="Compose Desktop" class="tech-icon" style="width: 48px; height: 48px;">
358360
<span>Compose Desktop</span>
359361
</div>
360362
<div class="tech-item animate__animated animate__fadeInUp" style="animation-delay: 0.3s">
361-
<i class="fas fa-database tech-icon"></i>
363+
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/sqlite/sqlite-original.svg" alt="SQLite" class="tech-icon" style="width: 48px; height: 48px;">
362364
<span>SQLite</span>
363365
</div>
364366
</div>
@@ -415,11 +417,8 @@ <h3>Aria Danesh</h3>
415417
localStorage.setItem('theme', isDark ? 'dark' : 'light');
416418
}
417419

418-
// Check for saved theme preference
419-
const savedTheme = localStorage.getItem('theme');
420-
if (savedTheme) {
421-
setTheme(savedTheme === 'dark');
422-
}
420+
// Set dark theme by default
421+
setTheme(true);
423422

424423
themeToggle.addEventListener('click', () => {
425424
const isDark = document.documentElement.getAttribute('data-theme') === 'dark';

0 commit comments

Comments
 (0)