Skip to content

Commit 8c6e7fa

Browse files
committed
Update unit types page
1 parent b8d14fa commit 8c6e7fa

10 files changed

+88
-14
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
var e={};export{e as default};

public/unit-types/prototype/assets/index-CAzbPg9j.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/unit-types/prototype/assets/index-CB3qAQqc.js

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

public/unit-types/prototype/assets/worker-Cv95Mzto.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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>Unit Types Demo</title>
7+
<script type="module" crossorigin src="/unit-types/prototype/assets/index-CB3qAQqc.js"></script>
8+
<link rel="stylesheet" crossorigin href="/unit-types/prototype/assets/index-CAzbPg9j.css">
9+
</head>
10+
<body>
11+
<div id="app">
12+
<div id="left"></div>
13+
<div id="right"></div>
14+
</div>
15+
</body>
16+
</html>

public/unit-types/prototype/vite.svg

Lines changed: 1 addition & 0 deletions
Loading

public/unit-types/unit-types.zip

7.83 MB
Binary file not shown.

src/pages/unit-types.jsx

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import Head from 'next/head'
33
import { Footer } from '@/components/Footer'
44
import { Header } from '@/components/Header'
55
import { Container } from '@/components/Container'
6+
import { Link } from '@/components/Link'
67

78
export default function ObjectsPage() {
89
return (
@@ -12,20 +13,25 @@ export default function ObjectsPage() {
1213
</Head>
1314
<Header />
1415
<main>
15-
<Container>
16-
<section id="objects" aria-labelledby="objects-title">
17-
<h2
18-
id="objects-title"
19-
className="text-3xl font-medium tracking-tight text-gray-900"
20-
>
21-
Modelling with Unit Types
22-
</h2>
23-
<hr className="mt-2" />
24-
<p className="my-6 leading-7">
25-
Coming soon.
26-
</p>
27-
</section>
28-
</Container>
16+
<Container>
17+
<section id="objects" aria-labelledby="objects-title">
18+
<h2
19+
id="objects-title"
20+
className="text-3xl font-medium tracking-tight text-gray-900"
21+
>
22+
Modelling with Unit Types
23+
</h2>
24+
<hr className="mt-2" />
25+
<p className="my-6 leading-7">
26+
Download the models used for evaluation{' '}
27+
<Link href="/unit-types/unit-types.zip">here</Link>.
28+
</p>
29+
<p>
30+
Try the (very early) prototype{' '}
31+
<Link href="/unit-types/prototype">here</Link>.
32+
</p>
33+
</section>
34+
</Container>
2935
</main>
3036
<Footer />
3137
</>

0 commit comments

Comments
 (0)