-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.97 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Body problem</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="icon" type="image/x-icon" href="/assets/images/icon.png">
<link rel="shortcut icon" href="/assets/images/icon.png"/>
<link rel="apple-touch-icon" href="/assets/images/icon.png"/>
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/icon.png"/>
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/icon.png"/>
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/icon.png"/>
<meta name="robots" content="noodp,noydir"/>
<meta name="application-name" content="Body problem">
<meta name="description"
content="A simulation of the n-body problem (e.g. the three-body problem) in a web app.">
<meta name="keywords" content="body problem, n-body problem, three-body problem, simulation, gravity">
<meta name="author" content="Matouš Volf">
<meta name="theme-color" content="#ffffff" data-react-helmet="true"/>
<meta property="og:title" content="Body problem"/>
<meta property="og:description"
content="A simulation of the n-body problem (e.g. the three-body problem) in a web app."/>
<meta property="og:url" content="https://body-problem.matousvolf.cz/"/>
<meta property="og:image" content="https://body-problem.matousvolf.cz/assets/images/icon.png"/>
<link data-trunk rel="tailwind-css" href="src/styles/main.css"/>
<!--suppress JSUnresolvedLibraryURL -->
<script src="https://kit.fontawesome.com/3c1b409f8f.js" crossorigin="anonymous"></script>
<link data-trunk rel="copy-dir" href="assets"/>
<link data-trunk rel="rust" href="Cargo.toml" data-bin="app" data-type="main" data-weak-refs/>
<link data-trunk rel="rust" href="Cargo.toml" data-bin="simulation_reactor" data-type="worker" data-weak-refs/>
</head>
<base href="/"/>
<body class="bg-neutral-800 text-white"></body>
</html>