summaryrefslogtreecommitdiffstats
path: root/ui/index.html
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-05-29 15:56:51 -0700
committeryum <yum.food.vr@gmail.com>2025-05-29 15:57:18 -0700
commit1ede199387c072a85e8757a6aaec04d2c7cdeba4 (patch)
tree68ecedd5f2f4c000c8f8e9045cfed7a49bdee0e4 /ui/index.html
parent0ebc79354ace812731a5c9a0a670cecd1ea941d7 (diff)
Add basic electron+tailwind hello world
Diffstat (limited to 'ui/index.html')
-rw-r--r--ui/index.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/ui/index.html b/ui/index.html
new file mode 100644
index 0000000..240e6ca
--- /dev/null
+++ b/ui/index.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="UTF-8">
+ <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
+ <title>Hello World!</title>
+ <link rel="stylesheet" href="build/output.css"> </head>
+<body>
+ <div class="container mx-auto mt-10 p-5 bg-gray-100 rounded shadow-lg">
+ <h1 class="text-4xl font-bold text-blue-600 text-center">
+ Hello World!
+ </h1>
+ <p class="text-center text-gray-700 mt-2">
+ Welcome to your Electron app with Tailwind CSS!
+ </p>
+ </div>
+
+ </body>
+</html>
+