import { Suspense, lazy, useEffect } from 'react' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '../ui/card' const SystemsTable = lazy(() => import('../systems-table/systems-table')) export default function () { useEffect(() => { document.title = 'Dashboard / Beszel' }, []) return ( <> All Systems Updated in real time. Press{' '} K {' '} to open the command palette. ) }