<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting to ICE Facility Locator</title>
<meta http-equiv="refresh" content="0; url=https://ice-locator-mcp.vercel.app/">
<meta name="robots" content="noindex, nofollow">
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background-color: #f8f9fa;
}
.container {
max-width: 600px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: #2563eb;
margin-bottom: 20px;
}
p {
margin-bottom: 20px;
color: #666;
}
.button {
display: inline-block;
background: #2563eb;
color: white;
padding: 12px 24px;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
transition: background-color 0.3s;
}
.button:hover {
background: #1d4ed8;
}
</style>
</head>
<body>
<div class="container">
<h1>ICE Facility Locator</h1>
<p>You are being redirected to the official ICE Facility Locator website.</p>
<p>If you are not redirected automatically, please click the button below:</p>
<a href="https://ice-locator-mcp.vercel.app/" class="button">Go to ICE Facility Locator</a>
</div>
<script>
// JavaScript redirect as backup
window.location.href = "https://ice-locator-mcp.vercel.app/";
</script>
</body>
</html>