madmax3366 commited on
Commit
652f2dc
·
verified ·
1 Parent(s): 95d1ca3

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +22 -32
index.html CHANGED
@@ -33,7 +33,7 @@
33
  <script src="./static/js/index.js"></script>
34
 
35
  <style>
36
- /* Small tweaks to match paper-style, white background, black text */
37
  body { background: #ffffff; color: #111; }
38
  .hero { background: #fff; }
39
  .publication-title { letter-spacing: -0.02em; }
@@ -41,13 +41,15 @@
41
  .system-figure img { max-width: 100%; height: auto; border: 1px solid #eee; border-radius: 6px; }
42
  .subtitle { color: #444; }
43
  .footer { background: #fafafa; }
44
- /* Remove heavy separators if any exist in your local index.css */
45
- section, .hero, .navbar { border-bottom: 0 !important; }
 
46
  </style>
47
  </head>
48
  <body>
49
 
50
- <!-- <nav class="navbar" role="navigation" aria-label="main navigation">
 
51
  <div class="navbar-brand">
52
  <a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
53
  <span aria-hidden="true"></span>
@@ -57,15 +59,15 @@
57
  </div>
58
  <div class="navbar-menu">
59
  <div class="navbar-start" style="flex-grow: 1; justify-content: center;">
60
- <a class="navbar-item" href="https://automotive-env.github.io/" target="_blank" rel="noopener">
61
- <span class="icon"><i class="fab fa-github"></i></span>
62
- </a>
63
  <a class="navbar-item" href="https://arxiv.org/abs/2509.21143" target="_blank" rel="noopener">
64
- <span class="icon"><i class="ai ai-arxiv"></i></span>
 
 
 
65
  </a>
66
  </div>
67
  </div>
68
- </nav> -->
69
 
70
  <!-- Hero: title, authors, links -->
71
  <section class="hero">
@@ -98,13 +100,12 @@
98
  </a>
99
  </span>
100
  <span class="link-block">
101
- <a href="https://automotive-env.github.io/"
102
  class="external-link button is-normal is-rounded is-dark" target="_blank" rel="noopener">
103
  <span class="icon"><i class="fab fa-github"></i></span>
104
- <span>Code(Coming soon)</span>
105
  </a>
106
  </span>
107
-
108
  </div>
109
  </div>
110
 
@@ -114,30 +115,29 @@
114
  </div>
115
  </section>
116
 
117
-
118
- <!-- Teaser video (local mp4 like os-world's teaser section) -->
119
  <section class="hero teaser">
120
  <div class="container is-max-desktop">
121
  <div class="hero-body">
122
  <video id="teaser" autoplay muted loop playsinline height="100%">
123
- <!-- Put your video at ./static/videos/demo.mp4 or update this path -->
124
  <source src="./static/videos/demo.mp4" type="video/mp4">
125
  </video>
126
- <!-- <h2 class="subtitle has-text-centered" style="margin-top:10px;">
127
- A short looping demo showcasing Automotive-ENV tasks and agent behavior.
128
- </h2> -->
129
  </div>
130
  </div>
131
  </section>
132
 
133
- <!-- System overview (two stacked images + description) -->
 
 
 
 
134
  <section class="section" id="system-overview">
135
  <div class="container is-max-desktop">
136
  <div class="columns is-centered">
137
  <div class="column is-four-fifths">
138
  <h2 class="title is-3 has-text-centered">System Overview</h2>
139
 
140
- <!-- Top image: task overview -->
141
  <figure class="system-figure has-text-centered" style="margin-bottom:16px;">
142
  <img class="sysimg" src="./static/images/demo_task.jpg" alt="Automotive-ENV task overview">
143
  <figcaption class="subtitle is-6" style="margin-top:8px;">
@@ -145,15 +145,10 @@
145
  </figcaption>
146
  </figure>
147
 
148
- <!-- Bottom image: architecture -->
149
  <figure class="system-figure has-text-centered">
150
  <img class="sysimg" src="./static/images/demo_arch.jpg" alt="Automotive-ENV system architecture overview">
151
- <!-- <figcaption class="subtitle is-6" style="margin-top:8px;">
152
- Figure 1b. Automotive-ENV architecture overview.
153
- </figcaption> -->
154
  </figure>
155
 
156
- <!-- Description under both images -->
157
  <div class="content has-text-justified system-overview-desc">
158
  <p>
159
  Automotive OS-based environment where the agent observes the accessibility tree, screen, and GPS;
@@ -201,7 +196,6 @@
201
  </div>
202
  </section>
203
 
204
-
205
  <!-- BibTeX -->
206
  <section class="section" id="BibTeX">
207
  <div class="container is-max-desktop content">
@@ -231,12 +225,8 @@
231
  <div class="columns is-centered">
232
  <div class="column is-8">
233
  <div class="content has-text-centered">
234
- <p>
235
- This website reuses the open-source Nerfies/OS-World page framework. Please remove analytics if you do not need it.
236
- </p>
237
- <p>
238
- © 2025 automotive-env — Hosted on GitHub Pages.
239
- </p>
240
  </div>
241
  </div>
242
  </div>
 
33
  <script src="./static/js/index.js"></script>
34
 
35
  <style>
36
+ /* light paper-like tuning to match os-world vibe */
37
  body { background: #ffffff; color: #111; }
38
  .hero { background: #fff; }
39
  .publication-title { letter-spacing: -0.02em; }
 
41
  .system-figure img { max-width: 100%; height: auto; border: 1px solid #eee; border-radius: 6px; }
42
  .subtitle { color: #444; }
43
  .footer { background: #fafafa; }
44
+ /* Ensure both system images line up nicely */
45
+ .sysimg { width: 100%; height: auto; display: block; }
46
+ .system-overview-desc { margin-top: 12px; }
47
  </style>
48
  </head>
49
  <body>
50
 
51
+ <!-- Minimal navbar with quick links -->
52
+ <nav class="navbar" role="navigation" aria-label="main navigation">
53
  <div class="navbar-brand">
54
  <a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
55
  <span aria-hidden="true"></span>
 
59
  </div>
60
  <div class="navbar-menu">
61
  <div class="navbar-start" style="flex-grow: 1; justify-content: center;">
 
 
 
62
  <a class="navbar-item" href="https://arxiv.org/abs/2509.21143" target="_blank" rel="noopener">
63
+ <span class="icon"><i class="ai ai-arxiv"></i></span>&nbsp;Paper
64
+ </a>
65
+ <a class="navbar-item" href="https://github.com/automotive-env/AutmotiveEnv.github.io" target="_blank" rel="noopener">
66
+ <span class="icon"><i class="fab fa-github"></i></span>&nbsp;Code
67
  </a>
68
  </div>
69
  </div>
70
+ </nav>
71
 
72
  <!-- Hero: title, authors, links -->
73
  <section class="hero">
 
100
  </a>
101
  </span>
102
  <span class="link-block">
103
+ <a href="https://github.com/automotive-env/AutmotiveEnv.github.io"
104
  class="external-link button is-normal is-rounded is-dark" target="_blank" rel="noopener">
105
  <span class="icon"><i class="fab fa-github"></i></span>
106
+ <span>Code (coming soon)</span>
107
  </a>
108
  </span>
 
109
  </div>
110
  </div>
111
 
 
115
  </div>
116
  </section>
117
 
118
+ <!-- Teaser video (local mp4 like os-world's teaser section)
119
+ Put your video at ./static/videos/demo.mp4 -->
120
  <section class="hero teaser">
121
  <div class="container is-max-desktop">
122
  <div class="hero-body">
123
  <video id="teaser" autoplay muted loop playsinline height="100%">
 
124
  <source src="./static/videos/demo.mp4" type="video/mp4">
125
  </video>
 
 
 
126
  </div>
127
  </div>
128
  </section>
129
 
130
+ <!-- System overview (two stacked images + description)
131
+ Place images at:
132
+ ./static/images/demo_task.jpg
133
+ ./static/images/demo_arch.jpg
134
+ -->
135
  <section class="section" id="system-overview">
136
  <div class="container is-max-desktop">
137
  <div class="columns is-centered">
138
  <div class="column is-four-fifths">
139
  <h2 class="title is-3 has-text-centered">System Overview</h2>
140
 
 
141
  <figure class="system-figure has-text-centered" style="margin-bottom:16px;">
142
  <img class="sysimg" src="./static/images/demo_task.jpg" alt="Automotive-ENV task overview">
143
  <figcaption class="subtitle is-6" style="margin-top:8px;">
 
145
  </figcaption>
146
  </figure>
147
 
 
148
  <figure class="system-figure has-text-centered">
149
  <img class="sysimg" src="./static/images/demo_arch.jpg" alt="Automotive-ENV system architecture overview">
 
 
 
150
  </figure>
151
 
 
152
  <div class="content has-text-justified system-overview-desc">
153
  <p>
154
  Automotive OS-based environment where the agent observes the accessibility tree, screen, and GPS;
 
196
  </div>
197
  </section>
198
 
 
199
  <!-- BibTeX -->
200
  <section class="section" id="BibTeX">
201
  <div class="container is-max-desktop content">
 
225
  <div class="columns is-centered">
226
  <div class="column is-8">
227
  <div class="content has-text-centered">
228
+ <p>This website reuses the open-source Nerfies/OS-World page framework. Please remove analytics if you do not need it.</p>
229
+ <p>© 2025 automotive-env Hosted on GitHub Pages.</p>
 
 
 
 
230
  </div>
231
  </div>
232
  </div>