import { useT } from "@agent-native/core/client/i18n"; import { IconFileText, IconPlus } from "@tabler/icons-react"; import { Button } from "@/components/ui/button"; import { useCreatePage } from "@/hooks/use-create-page"; export function EmptyState() { const createPage = useCreatePage(); const t = useT(); const handleCreate = () => { void createPage().catch(() => undefined); }; return (
{t("empty.noPageDescription")}