import { Database, HardDrive, HeartPulse, Plus } from "lucide-react"; import { CreateVolumeDialog } from "./create-volume-dialog"; import { useState } from "react"; export function EmptyState() { const [createVolumeOpen, setCreateVolumeOpen] = useState(false); return (

No volumes yet

Get started by creating your first volume. Manage and monitor all your storage backends in one place with advanced features like automatic mounting and health checks.

Multiple Backends

Support for local, NFS, and SMB storage

Auto Mounting

Automatic lifecycle management

Real-time Monitoring

Live status and health checks

); }