* feat(orion): add endpoint for link metadata * refactor: cleanup comments * wip: plumbing for building a web app * setup deployment materials for web app * fix(web): favicon
14 lines
352 B
HTML
14 lines
352 B
HTML
<!doctype html>
|
|
<html class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" type="image/png" href="/icon.png" />
|
|
<title>llink</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="./renderer.tsx"></script>
|
|
</body>
|
|
</html>
|