Hasarindu Perera commited on
Commit
d42eca0
·
unverified ·
1 Parent(s): 479c853

fix: title on left with package info, data inputs on right

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -330,7 +330,8 @@ with gr.Blocks(theme=THEME, title="QuPrep — Quantum Data Preparation") as demo
330
  with gr.Column(scale=1):
331
  gr.HTML("""
332
  <div style="height:100%;display:flex;flex-direction:column;justify-content:center;padding:16px 24px;border-radius:12px;border:1px solid #334155">
333
- <p style="margin:0 0 6px;font-size:1rem;font-weight:600;color:#a78bfa">QuPrep</p>
 
334
  <p style="margin:0 0 16px;font-size:0.85rem;color:#94a3b8;line-height:1.5">
335
  The missing preprocessing layer between classical datasets and quantum computing.
336
  Framework-agnostic: Qiskit · PennyLane · Cirq · TKET · Braket · Q# · IQM · OpenQASM 3.0.
@@ -349,7 +350,6 @@ with gr.Blocks(theme=THEME, title="QuPrep — Quantum Data Preparation") as demo
349
 
350
  # ── Right: data inputs ─────────────────────────────────────────────
351
  with gr.Column(scale=1):
352
- gr.Markdown("## ⚛️ QuPrep — Quantum Data Preparation")
353
  csv_upload = gr.File(label="Upload CSV", file_types=[".csv", ".tsv"])
354
  sample_dd = gr.Dropdown(
355
  choices=[""] + list(SAMPLES.keys()),
 
330
  with gr.Column(scale=1):
331
  gr.HTML("""
332
  <div style="height:100%;display:flex;flex-direction:column;justify-content:center;padding:16px 24px;border-radius:12px;border:1px solid #334155">
333
+ <p style="margin:0 0 4px;font-size:1.4rem;font-weight:700;color:#e2e8f0">⚛️ QuPrep</p>
334
+ <p style="margin:0 0 12px;font-size:0.9rem;font-weight:500;color:#a78bfa">Quantum Data Preparation</p>
335
  <p style="margin:0 0 16px;font-size:0.85rem;color:#94a3b8;line-height:1.5">
336
  The missing preprocessing layer between classical datasets and quantum computing.
337
  Framework-agnostic: Qiskit · PennyLane · Cirq · TKET · Braket · Q# · IQM · OpenQASM 3.0.
 
350
 
351
  # ── Right: data inputs ─────────────────────────────────────────────
352
  with gr.Column(scale=1):
 
353
  csv_upload = gr.File(label="Upload CSV", file_types=[".csv", ".tsv"])
354
  sample_dd = gr.Dropdown(
355
  choices=[""] + list(SAMPLES.keys()),