mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-23 14:06:18 +01:00
- Add /smart route to view SMART data across all systems - Store SMART devices in new smart_devices collection - Auto-fetch SMART data when system first comes online - Add refresh/delete actions per device with realtime updates - Add navbar and command palette entries
21 lines
453 B
Go
21 lines
453 B
Go
import { useEffect } from "react"
|
|
import SmartTable from "@/components/routes/system/smart-table"
|
|
import { ActiveAlerts } from "@/components/active-alerts"
|
|
import { FooterRepoLink } from "@/components/footer-repo-link"
|
|
|
|
export default function Smart() {
|
|
useEffect(() => {
|
|
document.title = `S.M.A.R.T. / Beszel`
|
|
}, [])
|
|
|
|
return (
|
|
<>
|
|
<div className="grid gap-4">
|
|
<ActiveAlerts />
|
|
<SmartTable />
|
|
</div>
|
|
<FooterRepoLink />
|
|
</>
|
|
)
|
|
}
|