Skip to content

Commit e7b8f2b

Browse files
committed
更新首页,添加完整项目导航
1 parent b09c143 commit e7b8f2b

File tree

1 file changed

+62
-11
lines changed

1 file changed

+62
-11
lines changed

index.html

Lines changed: 62 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
text-align: center;
2121
}
2222
.container {
23-
max-width: 800px;
23+
max-width: 900px;
2424
margin: 0 auto;
2525
padding: 2rem;
2626
background-color: white;
@@ -32,6 +32,13 @@
3232
margin-bottom: 1rem;
3333
color: #2d3748;
3434
}
35+
h2 {
36+
font-size: 1.8rem;
37+
margin: 1.5rem 0 1rem;
38+
color: #2d3748;
39+
border-bottom: 2px solid #edf2f7;
40+
padding-bottom: 0.5rem;
41+
}
3542
p {
3643
font-size: 1.1rem;
3744
line-height: 1.6;
@@ -52,10 +59,26 @@
5259
.btn:hover {
5360
background-color: #2c5282;
5461
}
62+
.btn-secondary {
63+
background-color: #4a5568;
64+
}
65+
.btn-secondary:hover {
66+
background-color: #2d3748;
67+
}
5568
.logo {
5669
max-width: 200px;
5770
margin-bottom: 2rem;
5871
}
72+
.projects {
73+
display: flex;
74+
flex-wrap: wrap;
75+
justify-content: center;
76+
gap: 10px;
77+
margin-top: 1rem;
78+
}
79+
.section {
80+
margin-bottom: 2rem;
81+
}
5982
</style>
6083
</head>
6184
<body>
@@ -65,17 +88,45 @@ <h1>OpenPerceptionX</h1>
6588
<p>欢迎访问OpenPerceptionX。我们的网站正在升级中,很快就会带来全新体验。</p>
6689
<p>Welcome to OpenPerceptionX. Our website is currently being upgraded and will be back with a new experience soon.</p>
6790

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>
91+
<div class="section">
92+
<h2>最新活动 / Recent Events</h2>
93+
<div class="projects">
94+
<a href="/public/cvpr2024/index.html" class="btn">CVPR 2024</a>
95+
<a href="/public/challenge2024/index.html" class="btn">Challenge 2024</a>
96+
<a href="/public/valse2024/workshop/index.html" class="btn">VALSE 2024</a>
97+
<a href="/public/cvpr2025/index.html" class="btn">CVPR 2025</a>
98+
</div>
99+
</div>
100+
101+
<div class="section">
102+
<h2>研究项目 / Research Projects</h2>
103+
<div class="projects">
104+
<a href="/public/DriveLM/index.html" class="btn btn-secondary">DriveLM</a>
105+
<a href="/public/AgiBot-World/index.html" class="btn btn-secondary">AgiBot-World</a>
106+
<a href="/public/Vista/index.html" class="btn btn-secondary">Vista</a>
107+
<a href="/public/RoboDual/index.html" class="btn btn-secondary">RoboDual</a>
108+
<a href="/public/Nexus/index.html" class="btn btn-secondary">Nexus</a>
109+
<a href="/public/MPI/index.html" class="btn btn-secondary">MPI</a>
110+
</div>
111+
</div>
112+
113+
<div class="section">
114+
<h2>往届活动 / Past Events</h2>
115+
<div class="projects">
116+
<a href="/public/cvpr2023/workshop/index.html" class="btn btn-secondary">CVPR 2023</a>
117+
<a href="/public/challenge2023/index.html" class="btn btn-secondary">Challenge 2023</a>
118+
<a href="/public/iclr2023/workshop/index.html" class="btn btn-secondary">ICLR 2023</a>
119+
<a href="/public/event2023/index.html" class="btn btn-secondary">Events 2023</a>
120+
</div>
71121
</div>
72-
</div>
73122

74-
<script>
75-
// 可选:在一定时间后自动重定向到特定页面
76-
// setTimeout(function() {
77-
// window.location.href = "/public/cvpr2024/index.html";
78-
// }, 3000); // 3秒后重定向
79-
</script>
123+
<div class="section">
124+
<h2>未来活动 / Future Events</h2>
125+
<div class="projects">
126+
<a href="/public/challenge2025/index.html" class="btn btn-secondary">Challenge 2025</a>
127+
<a href="/public/iccv2025/workshop/index.html" class="btn btn-secondary">ICCV 2025</a>
128+
</div>
129+
</div>
130+
</div>
80131
</body>
81132
</html>

0 commit comments

Comments
 (0)