Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,18 +9,13 @@ from tab.tab5_randomness_visualizer import get_tab5_randomness
|
|
| 9 |
from tab.tab6_noise_simulation import get_tab6_noise_simulation
|
| 10 |
|
| 11 |
# Build UI
|
| 12 |
-
with gr.Blocks(css=custom_css
|
| 13 |
|
| 14 |
# 🔐 Welcome Header & Note
|
| 15 |
gr.Markdown(
|
| 16 |
"""
|
| 17 |
-
<div style="background-color:#
|
| 18 |
-
|
| 19 |
-
<p>
|
| 20 |
-
A next-generation cybersecurity suite powered by the principles of quantum physics.<br>
|
| 21 |
-
Generate QKD keys, encrypt & decrypt your messages, and visualize quantum randomness — all in one seamless platform.
|
| 22 |
-
</p>
|
| 23 |
-
<p style="font-size:13px; color:#aaa;"><em>⚠️ For demonstration & research use only. Not intended for production deployments.</em></p>
|
| 24 |
</div>
|
| 25 |
""",
|
| 26 |
elem_classes="centered-text"
|
|
|
|
| 9 |
from tab.tab6_noise_simulation import get_tab6_noise_simulation
|
| 10 |
|
| 11 |
# Build UI
|
| 12 |
+
with gr.Blocks(css=custom_css) as demo:
|
| 13 |
|
| 14 |
# 🔐 Welcome Header & Note
|
| 15 |
gr.Markdown(
|
| 16 |
"""
|
| 17 |
+
<div style="background-color:#2a2a2a; padding: 15px; border-radius: 10px; border: 1px solid #444; text-align: center; font-size: 14px; color: #ddd;">
|
| 18 |
+
⚠️ <strong>Disclaimer:</strong> ⚠️ For demonstration & research use only. Not intended for production deployments.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</div>
|
| 20 |
""",
|
| 21 |
elem_classes="centered-text"
|