This commit is contained in:
Tomas Dvorak
2025-05-28 22:59:05 +02:00
parent b4abe84dc6
commit 913f4c93eb
2 changed files with 2 additions and 161 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
// Load and display banner
async function loadBanner() {
try {
const response = await fetch('/api/banner');
const response = await fetch('/api/banner.json');
if (!response.ok) return;
const banner = await response.json();