VyLala commited on
Commit
65a921e
·
verified ·
1 Parent(s): e80d020

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -15,6 +15,10 @@ global_stop_flag = StopFlag() # Shared between run + stop
15
  with open("offer.html", "r", encoding="utf-8") as f:
16
  pricing_html = f.read()
17
 
 
 
 
 
18
  with gr.Blocks() as interface:
19
  # with gr.Tab("CURIOUS ABOUT THIS PRODUCT?"):
20
  # gr.HTML(value=pricing_html)
@@ -789,6 +793,9 @@ with gr.Blocks() as interface:
789
  # </style>
790
  # """)
791
  with gr.Tab("CURIOUS ABOUT THIS PRODUCT?"):
 
 
 
792
  gr.HTML(value=pricing_html)
793
 
794
  interface.launch(share=True,debug=True)
 
15
  with open("offer.html", "r", encoding="utf-8") as f:
16
  pricing_html = f.read()
17
 
18
+ with open(""mtdna_tool_explainer_updated.html"", "r", encoding="utf-8") as f:
19
+ flow_chart = f.read()
20
+
21
+
22
  with gr.Blocks() as interface:
23
  # with gr.Tab("CURIOUS ABOUT THIS PRODUCT?"):
24
  # gr.HTML(value=pricing_html)
 
793
  # </style>
794
  # """)
795
  with gr.Tab("CURIOUS ABOUT THIS PRODUCT?"):
796
+ gr.HTML(value=flow_chart)
797
+
798
+ with gr.Tab("PRICING"):
799
  gr.HTML(value=pricing_html)
800
 
801
  interface.launch(share=True,debug=True)