raviix46 commited on
Commit
d302e1d
·
verified ·
1 Parent(s): 575ece4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -8
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, title="QuantumCrypt") as demo:
13
 
14
  # 🔐 Welcome Header & Note
15
  gr.Markdown(
16
  """
17
- <div style="background-color:#1e1e1e; padding: 20px; border-radius: 12px; border: 1px solid #333; text-align: center; font-size: 15px; color: #ddd;">
18
- <h2 style="color:#ff8c00;">Welcome to <strong>QuantumCrypt</strong> 🔐</h2>
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"