Skip to content

Commit b09c143

Browse files
committed
添加临时index.html主页
1 parent e0bf0a4 commit b09c143

File tree

1 file changed

+81
-0
lines changed

1 file changed

+81
-0
lines changed

index.html

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>PerceptionX - OpenDriveLab</title>
7+
<link rel="icon" href="/public/assets/brand/opendl.png" type="image/png">
8+
<style>
9+
body {
10+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
11+
margin: 0;
12+
padding: 0;
13+
background-color: #f9f9f9;
14+
color: #333;
15+
display: flex;
16+
flex-direction: column;
17+
justify-content: center;
18+
align-items: center;
19+
min-height: 100vh;
20+
text-align: center;
21+
}
22+
.container {
23+
max-width: 800px;
24+
margin: 0 auto;
25+
padding: 2rem;
26+
background-color: white;
27+
border-radius: 8px;
28+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
29+
}
30+
h1 {
31+
font-size: 2.5rem;
32+
margin-bottom: 1rem;
33+
color: #2d3748;
34+
}
35+
p {
36+
font-size: 1.1rem;
37+
line-height: 1.6;
38+
color: #4a5568;
39+
margin-bottom: 1.5rem;
40+
}
41+
.btn {
42+
display: inline-block;
43+
background-color: #3182ce;
44+
color: white;
45+
font-weight: 600;
46+
padding: 0.75rem 1.5rem;
47+
border-radius: 4px;
48+
text-decoration: none;
49+
transition: background-color 0.2s ease;
50+
margin: 0.5rem;
51+
}
52+
.btn:hover {
53+
background-color: #2c5282;
54+
}
55+
.logo {
56+
max-width: 200px;
57+
margin-bottom: 2rem;
58+
}
59+
</style>
60+
</head>
61+
<body>
62+
<div class="container">
63+
<img src="/public/assets/brand/opendl.png" alt="PerceptionX Logo" class="logo">
64+
<h1>OpenPerceptionX</h1>
65+
<p>欢迎访问OpenPerceptionX。我们的网站正在升级中,很快就会带来全新体验。</p>
66+
<p>Welcome to OpenPerceptionX. Our website is currently being upgraded and will be back with a new experience soon.</p>
67+
68+
<div>
69+
<a href="/public/cvpr2024/index.html" class="btn">CVPR 2024</a>
70+
<a href="/public/challenge2024/index.html" class="btn">Challenge 2024</a>
71+
</div>
72+
</div>
73+
74+
<script>
75+
// 可选:在一定时间后自动重定向到特定页面
76+
// setTimeout(function() {
77+
// window.location.href = "/public/cvpr2024/index.html";
78+
// }, 3000); // 3秒后重定向
79+
</script>
80+
</body>
81+
</html>

0 commit comments

Comments
 (0)