import React, { useEffect } from "react" import type { ComponentType } from "react" export function withRedirect(Component): ComponentType { return (props) => { useEffect(() => { const timer = setTimeout(() => { window.location.href = "https://www.hotukdeals.com" // Redirect to the URL you want }, 5000) // 5 seconds return () => clearTimeout(timer) }, []) return } } hotukdeals