-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 1.45 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Check Mate - Redirecting to the main application">
<meta name="keywords" content="Check Mate, Streamlit, Automation, Workflow">
<meta name="author" content="Your Name or Organization">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Check Mate">
<meta property="og:description" content="Redirecting you to Check Mate's main page.">
<meta property="og:url" content="https://checkmatehome.info/">
<meta property="og:type" content="website">
<title>Check Mate</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
}
h1 {
font-size: 3rem;
color: #333;
}
p {
font-size: 1.2rem;
color: #666;
margin-top: 10px;
}
@media (max-width: 600px) {
h1 {
font-size: 2rem;
}
p {
font-size: 1rem;
}
}
</style>
<script>
setTimeout(function() {
window.location.href = "https://checkmate.streamlit.app/";
}, 1000);
</script>
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<h1>Check Mate</h1>
<p>Redirecting to the main application...</p>
</body>
</html>