import { useNavigate, useParams } from "react-router-dom"; import { useTranslation } from "react-i18next"; export default function CrawlPage() { const navigate = useNavigate(); const { projectId } = useParams(); const { t } = useTranslation(); return (

{t("Build Ontology")}

{t("Step 3 of 4: Auto-crawl and build ontology with Phase 5 + 7")}

{t("Crawl pipeline will appear here")}

); }