slidestr/index.html

21 lines
777 B
HTML
Raw Normal View History

2023-08-16 11:40:36 +00:00
<!doctype html>
2023-07-15 21:23:22 +00:00
<html lang="en">
<head>
<meta charset="UTF-8" />
2023-07-17 10:32:01 +00:00
<link rel="icon" type="image/svg+xml" href="/slidestr.svg" />
2023-08-16 11:40:36 +00:00
<link rel="manifest" href="manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
2023-07-17 10:32:01 +00:00
<title>slidestr.net</title>
2023-08-16 11:40:36 +00:00
<link href="/fonts/outfit/outfit.css" rel="stylesheet" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- possible content values: default, black or black-translucent -->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
2023-07-15 21:23:22 +00:00
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>