-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (27 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="icon" type="image/svg+xml" sizes="any" href="/favicon.svg" />
<title>Contort | A Playful Plotter</title>
<meta name="description" content='A 3D surface plotter / graphing calculator that attempts to abstract math expressions into a colorful chain of "modifiers" to deliver a fun, gamified learning experience.' />
<!-- Social Media -->
<meta property="og:title" content="Contort Plotter">
<meta property="og:description" content="A Playful 3D Surface Plotter">
<meta property="og:type" content="website">
<meta property="og:image" content="https://contort.thebunny.net/images/social-preview.png">
<meta property="og:url" content="https://contort.thebunny.net/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image:alt" content="A 3D isometric image of a yellow square with black grid lines distorted into a ravioli-like shape, it is sitting inside a hollow gray box with 3 sides and white grid lines. The box is offset towards the right with a logo on the bottom left that reads 'Contort'.">
<meta name="theme-color" content="#f5c542">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Gugi&family=Nunito:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>