enzostvs's picture
enzostvs HF Staff
new contribute-repos
73322f4
raw
history blame
597 Bytes
"use client";
import { useEffect } from "react";
export default function DomainRedirect() {
useEffect(() => {
if (typeof window === "undefined") return;
const host = window.location.host;
// Check if we're not on hf.co or huggingface.co
const isHfCo = host === "hf.co" || host.startsWith("hf.co:");
const isHuggingFaceCo =
host === "huggingface.co" || host.startsWith("huggingface.co:");
if (!isHfCo && !isHuggingFaceCo) {
// Redirect to the correct URL
window.location.replace("https://huggingface.co/deepsite");
}
}, []);
return null;
}