summaryrefslogtreecommitdiff
path: root/web/index.html
diff options
context:
space:
mode:
authorJosh Kingsley <josh@joshkingsley.me>2025-10-25 16:24:53 +0300
committerJosh Kingsley <josh@joshkingsley.me>2025-10-25 22:09:35 +0300
commita658e571ef245a200884ea96198c54188ae650da (patch)
tree636039604c7ccd84913c9f17a5a38bbbeb1c83b0 /web/index.html
parent1e15fcceddfd2710c84fee0d68988a8eacce7453 (diff)
feat(web): setup components
Diffstat (limited to 'web/index.html')
-rw-r--r--web/index.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/index.html b/web/index.html
index b7231ea..846f5be 100644
--- a/web/index.html
+++ b/web/index.html
@@ -3,9 +3,11 @@
<head>
<meta charset="utf-8" />
<title>Notive</title>
+ <link rel="stylesheet" href="index.css" />
<script type="module" src="index.ts"></script>
+ <script type="module" src="components/index.ts"></script>
</head>
<body>
- <p>Hello, World!</p>
+ <ntv-app></ntv-app>
</body>
</html>