Files
365devnet/src/components/UptimeStatus.astro
Richard Bergsma db4bde54e6 Refactor UptimeStatus component to improve data fetching and user experience
- Removed UpdateTimer component and integrated countdown functionality directly into UptimeStatusIsland.
- Implemented sessionStorage caching for system status data to enhance performance and user experience.
- Added visual countdown display for the next update, improving user awareness of data refresh timing.
- Updated privacy policy to clarify the use of sessionStorage for caching non-personal data.
2025-06-11 21:48:11 +02:00

12 lines
265 B
Plaintext

---
import UptimeStatusIsland from './UptimeStatusIsland.jsx';
---
<UptimeStatusIsland client:only="react" />
<style>
/**** Custom grid for 40 heartbeat squares ****/
.grid-cols-40 {
display: grid;
grid-template-columns: repeat(40, minmax(0, 1fr));
}
</style>