Script zum direkten deployen von docker-compose

Footer-Zeilen hinzugefügt
watchtower dazu
This commit is contained in:
2026-02-10 21:02:20 +00:00
parent b71d92646b
commit 9d47e3095c
4 changed files with 104 additions and 0 deletions

View File

@@ -65,3 +65,46 @@
color: #666;
font-weight: 500;
}
.dashboard-footer {
margin-top: 2rem;
padding-top: 1rem;
}
.footer-divider {
border: none;
border-top: 1px solid #ccc;
margin: 0 0 1rem 0;
}
.footer-credits {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.85rem;
color: #666;
margin-bottom: 0.75rem;
}
.footer-left {
text-align: left;
}
.footer-right {
text-align: right;
}
.footer-sponsor {
text-align: center;
font-size: 0.85rem;
color: #666;
}
.footer-sponsor a {
color: #0066cc;
text-decoration: none;
}
.footer-sponsor a:hover {
text-decoration: underline;
}

View File

@@ -426,6 +426,18 @@ const WeatherDashboard = ({ data }) => {
</div>
</div>
{/* Footer */}
<div className="dashboard-footer">
<hr className="footer-divider" />
<div className="footer-credits">
<div className="footer-left">Daten-Erfassung mit einer Davis VantagePro.</div>
<div className="footer-right">Grafiken erzeugt mit HighCharts</div>
</div>
<div className="footer-sponsor">
Die Wetterstation wurde vom Zeitungsverlag Waiblingen <a href="https://www.zvw.de" target="_blank" rel="noopener noreferrer">www.zvw.de</a> gestiftet.
</div>
</div>
</div>
)
}