- 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.
12 lines
265 B
Plaintext
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> |