Initial commit.

This commit is contained in:
Cameron Redmore 2025-05-19 11:40:56 +01:00
commit b022bca449
20 changed files with 7405 additions and 0 deletions

17
index.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
<title>Gemini Opener</title>
</head>
<body>
<h1>Loading Gemini...</h1>
<!-- Renderer process messages (if any) will go here -->
<p id="info"></p>
<!-- You can also require other files to run in this process -->
<!-- <script src="./renderer.js"></script> -->
</body>
</html>