29 lines
600 B
HTML
29 lines
600 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Logseq Page Timetracker</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: light;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Segoe UI", Tahoma, sans-serif;
|
|
background: #f8fafc;
|
|
color: #1f2937;
|
|
}
|
|
|
|
#app {
|
|
padding: 12px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app">Loading timetracker...</div>
|
|
<script type="module" src="./src/index.ts"></script>
|
|
</body>
|
|
</html>
|