import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
import { Database } from "lucide-react";
const NotAvailableBanner = () => {
return (
Config store setup is missing.
The UI requires a database connection to store configuration data, but no database is currently configured.
To enable the UI, please add the database settings to your config.json (see{" "}
documentation
).
);
};
export default NotAvailableBanner;