Add weather to header, collapsible sections, staggered card animation
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-05-16 16:13:10 +02:00
parent 6389e323dd
commit 7bbefaa1f6
6 changed files with 212 additions and 7 deletions
+2
View File
@@ -16,6 +16,7 @@ import qbt from './routes/qbittorrent'
import jellyfin from './routes/jellyfin'
import navidrome from './routes/navidrome'
import romm from './routes/romm'
import weather from './routes/weather'
const app = express()
const PORT = Number(process.env.PORT ?? 3001)
@@ -37,6 +38,7 @@ app.use('/api/qbt', qbt)
app.use('/api/jellyfin', jellyfin)
app.use('/api/navidrome', navidrome)
app.use('/api/romm', romm)
app.use('/api/weather', weather)
// Serve built frontend in production only
if (process.env.NODE_ENV === 'production') {