aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/web
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-05-28 16:30:26 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-05-28 16:30:26 +0200
commitcd32a3ca0173676ed31486b5fa4dbd8c744cdec5 (patch)
treea9d0888c7a0e425ef8006cc9aade5889b78c074c /src/frontend/web
parente749e2ccf97e6e7a2d1c124c4e5bed688e4c06f2 (diff)
implement frontend framework
Diffstat (limited to 'src/frontend/web')
-rw-r--r--src/frontend/web/hello-world/index.css7
-rw-r--r--src/frontend/web/hello-world/index.html6
-rw-r--r--src/frontend/web/hello-world/index.js3
-rw-r--r--src/frontend/web/index.css4
-rw-r--r--src/frontend/web/index.html3
5 files changed, 0 insertions, 23 deletions
diff --git a/src/frontend/web/hello-world/index.css b/src/frontend/web/hello-world/index.css
deleted file mode 100644
index 41b0b29..0000000
--- a/src/frontend/web/hello-world/index.css
+++ /dev/null
@@ -1,7 +0,0 @@
-#container {
- background: #efefef;
- padding: 10px;
- border-radius: 4px;
- user-select: none;
- cursor: pointer;
-}
diff --git a/src/frontend/web/hello-world/index.html b/src/frontend/web/hello-world/index.html
deleted file mode 100644
index 047a283..0000000
--- a/src/frontend/web/hello-world/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<div id="container" onclick="clicked()">
- Click Me!
- <z-component type="box">
- <span slot="title">Hello World!<span>
- </z-component>
-</div>
diff --git a/src/frontend/web/hello-world/index.js b/src/frontend/web/hello-world/index.js
deleted file mode 100644
index 8e55c52..0000000
--- a/src/frontend/web/hello-world/index.js
+++ /dev/null
@@ -1,3 +0,0 @@
-function clicked() {
- console.log('clicked');
-}
diff --git a/src/frontend/web/index.css b/src/frontend/web/index.css
deleted file mode 100644
index a93ea47..0000000
--- a/src/frontend/web/index.css
+++ /dev/null
@@ -1,4 +0,0 @@
-body {
- padding: 0;
- margin: 0;
-}
diff --git a/src/frontend/web/index.html b/src/frontend/web/index.html
deleted file mode 100644
index 646cdb0..0000000
--- a/src/frontend/web/index.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<z-component type="hello-world">
- <p slot="ur-mom">lulululu</p>
-</z-component>