-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 908 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 908 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>▲ Real Estate Intelligence Platform</title>
<script>
// Redirect to the interactive demo
window.location.href = './interactive_demo.html';
</script>
<style>
body {
font-family: Inter, -apple-system, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #f5f5f5;
}
.loading {
text-align: center;
}
</style>
</head>
<body>
<div class="loading">
<h2>▲ Loading Real Estate Intelligence Platform...</h2>
<p>If not redirected automatically, <a href="./interactive_demo.html">click here</a></p>
</div>
</body>
</html>