Download Our App
// Replace the URLs below with your actual app links
const iosUrl = “https://apps.apple.com/pk/app/rafeeqi-driver/id6744607575”;
const androidUrl = “https://https://play.google.com/store/apps/details?id=com.rafeeqi.driver”;
const fallbackUrl = “https://https://umrah.rafeeqi.com/”; // Optional
window.onload = function () {
const userAgent = navigator.userAgent || navigator.vendor || window.opera;
if (/android/i.test(userAgent)) {
window.location.href = androidUrl;
} else if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {
window.location.href = iosUrl;
} else {
// Fallback for desktop or unknown device
window.location.href = fallbackUrl;
}
};
Redirecting you to the app store…