summary refs log tree commit diff stats
path: root/index.html
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-09-30 09:15:56 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-09-30 09:15:56 +0200
commitd0263ce46160cd4152c67381fab2ee557f3aa483 (patch)
treeb24a725d71b984e466ff478fbb4449111beeacac /index.html
parentchore: Second version (diff)
downloadweb-client-d0263ce46160cd4152c67381fab2ee557f3aa483.zip
feat(treewide): Switch to tailwindcss and add more components
Diffstat (limited to 'index.html')
-rw-r--r--index.html27
1 files changed, 13 insertions, 14 deletions
diff --git a/index.html b/index.html
index 77d81f4..6fe87e8 100644
--- a/index.html
+++ b/index.html
@@ -1,32 +1,31 @@
 <!doctype html>
-<html>
+<html lang="en">
   <head>
-    <!-- Add a plain CSS file: see https://trunkrs.dev/assets/#css -->
-    <!-- If using Tailwind with Leptos CSR, see https://trunkrs.dev/assets/#tailwind instead-->
-    <link
-      data-trunk
-      rel="scss"
-      href="public/styles.scss"
+    <meta charset="utf-8" />
+    <meta
+      name="viewport"
+      content="width=device-width, initial-scale=1.0"
     />
 
+    <!-- include support for `wasm-bindgen --weak-refs` - see: https://wasm-bindgen.github.io/wasm-bindgen/reference/weak-references.html -->
     <link
       data-trunk
-      rel="copy-file"
-      href="public/logo.svg"
+      rel="rust"
+      data-wasm-opt="z"
+      data-weak-refs
     />
 
     <link
       data-trunk
       rel="icon"
-      href="public/favicon.ico"
+      type="image/ico"
+      href="./public/favicon.ico"
     />
 
-    <!-- include support for `wasm-bindgen --weak-refs` - see: https://rustwasm.github.io/docs/wasm-bindgen/reference/weak-references.html -->
     <link
       data-trunk
-      rel="rust"
-      data-wasm-opt="z"
-      data-weak-refs
+      rel="css"
+      href="./public/tailwindcss-output.css"
     />
   </head>