blob: 51c356493f6852bdf5ba34b13f5ec71b6896aaaa [file] [log] [blame]
Pokey Rulee2a8c2f2025-04-23 15:09:25 +01001<!doctype html>
2<html lang="en">
Sean McCullough86b56862025-04-18 13:04:03 -07003 <head>
Pokey Rulee2a8c2f2025-04-23 15:09:25 +01004 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <title>sketch coding assistant</title>
Pokey Rule26daff72025-04-24 14:25:55 +01007 <link rel="stylesheet" href="/src/sketch-app-shell.css" />
Sean McCulloughcb48b672025-06-25 10:11:16 -07008 <link rel="stylesheet" href="/src/tailwind.css" />
9
Pokey Rule8cac59a2025-04-24 12:21:19 +010010 <script type="module">
11 const { worker } = await import("./mocks/browser");
12 await worker.start();
13 await import("../sketch-app-shell.ts");
14 </script>
Sean McCullough86b56862025-04-18 13:04:03 -070015 </head>
16 <body>
Sean McCullough86b56862025-04-18 13:04:03 -070017 <sketch-app-shell></sketch-app-shell>
Sean McCullough86b56862025-04-18 13:04:03 -070018 </body>
Sean McCullough71941bd2025-04-18 13:31:48 -070019</html>