diff options
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> + |
