diff options
| author | yum <yum.food.vr@gmail.com> | 2025-05-29 15:56:51 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-05-29 15:57:18 -0700 |
| commit | 1ede199387c072a85e8757a6aaec04d2c7cdeba4 (patch) | |
| tree | 68ecedd5f2f4c000c8f8e9045cfed7a49bdee0e4 /ui/index.html | |
| parent | 0ebc79354ace812731a5c9a0a670cecd1ea941d7 (diff) | |
Add basic electron+tailwind hello world
Diffstat (limited to 'ui/index.html')
| -rw-r--r-- | ui/index.html | 20 |
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> + |
