-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1.92 KB
/
index.html
File metadata and controls
28 lines (28 loc) · 1.92 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#f97316" />
<meta name="description" content="A task management system with Create Mode and Execution Mode" />
<link rel="manifest" href="/manifest.json" />
<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=Work+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Caveat:wght@400;500;600;700&family=Dancing+Script:wght@400;500;600;700&family=Satisfy&family=Kalam:wght@300;400;700&family=Shadows+Into+Light&family=Amatic+SC:wght@400;700&family=Permanent+Marker&family=Architects+Daughter&family=Coming+Soon&family=Indie+Flower&family=Gloria+Hallelujah&family=Handlee&family=Just+Another+Hand&family=Patrick+Hand&family=Schoolbell&family=Allura&family=Bad+Script&family=Brush+Script+MT&family=Cedarville+Cursive&family=Clicker+Script&family=Great+Vibes&family=Homemade+Apple&family=Marck+Script&family=Mr+Bedfort&family=Parisienne&family=Petit+Formal+Script&family=Playball&family=Qwigley&family=Rouge+Script&family=Sacramento&family=Sail&family=Sofia&family=Tangerine:wght@400;700&family=Yellowtail&display=swap" rel="stylesheet">
<title>Forth</title>
</head>
<body>
<script>
(function(){
if(new URLSearchParams(location.search).get('noBypass')==='1')return;
var h=location.hostname;
var on=h==='localhost'||h==='127.0.0.1'||localStorage.getItem('forth-dev-bypass')==='1';
if(on)localStorage.setItem('forth-dev-bypass','1');
window.__FORTH_DEV_BYPASS__=on;
})();
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>