Spaces:
Running
Running
Update index.html
Browse files- index.html +11 -1
index.html
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
<div id="main-content" class="p-6 flex flex-col space-y-4">
|
24 |
<div class="text-center mt-8">
|
25 |
<h1 id="main-content-title" class="text-2xl font-bold text-cyan-400">Live Previews</h1>
|
26 |
-
<h2 id="main-content-subtitle" class="text-
|
27 |
<p class="mt-3 text-xs text-slate-500">
|
28 |
<kbd class="px-2 py-1.5 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded-lg dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500">Alt / Option</kbd> + <kbd class="px-2 py-1.5 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded-lg dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500">P</kbd> to open prompt.
|
29 |
<kbd class="px-2 py-1.5 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded-lg dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500">Alt / Option</kbd> + <kbd class="px-2 py-1.5 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded-lg dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500">R</kbd> to regenerate.
|
@@ -176,6 +176,16 @@
|
|
176 |
</div>
|
177 |
</div>
|
178 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
<script src="script.js"></script>
|
180 |
</body>
|
181 |
</html>
|
|
|
23 |
<div id="main-content" class="p-6 flex flex-col space-y-4">
|
24 |
<div class="text-center mt-8">
|
25 |
<h1 id="main-content-title" class="text-2xl font-bold text-cyan-400">Live Previews</h1>
|
26 |
+
<h2 id="main-content-subtitle" class="text-base font-semibold text-slate-300 mt-2">Powered by Gemini Models</h2>
|
27 |
<p class="mt-3 text-xs text-slate-500">
|
28 |
<kbd class="px-2 py-1.5 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded-lg dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500">Alt / Option</kbd> + <kbd class="px-2 py-1.5 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded-lg dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500">P</kbd> to open prompt.
|
29 |
<kbd class="px-2 py-1.5 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded-lg dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500">Alt / Option</kbd> + <kbd class="px-2 py-1.5 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded-lg dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500">R</kbd> to regenerate.
|
|
|
176 |
</div>
|
177 |
</div>
|
178 |
|
179 |
+
<div id="prompt-display-modal-overlay" class="modal-overlay">
|
180 |
+
<div id="prompt-display-modal-content" class="modal-content max-w-2xl">
|
181 |
+
<h3 class="text-xl font-semibold text-cyan-300 mb-2">Full Prompt</h3>
|
182 |
+
<pre id="full-prompt-text" class="text-sm text-slate-300 whitespace-pre-wrap break-words bg-slate-800 p-3 rounded border border-slate-600 max-h-96 overflow-y-auto"></pre>
|
183 |
+
<div class="flex justify-end gap-3 mt-4">
|
184 |
+
<button id="prompt-display-modal-close-button" class="futuristic-button modal-button-secondary px-4 py-2 text-sm">Close</button>
|
185 |
+
</div>
|
186 |
+
</div>
|
187 |
+
</div>
|
188 |
+
|
189 |
<script src="script.js"></script>
|
190 |
</body>
|
191 |
</html>
|