parass13 commited on
Commit
61e7b4a
Β·
verified Β·
1 Parent(s): 23bec3d

Update dashboard.py

Browse files
Files changed (1) hide show
  1. dashboard.py +4 -7
dashboard.py CHANGED
@@ -10,12 +10,12 @@ import os
10
  import warnings
11
 
12
  # Import pages (make sure each page has layout() function defined)
13
- import home
14
  import about
15
  import examples
16
  import community
17
  import user_guide
18
- import install
19
 
20
  # Suppress logs and warnings
21
  os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
@@ -89,8 +89,7 @@ def login_user(email, password):
89
  # Gradio App
90
  with gr.Blocks() as demo:
91
  with gr.Tabs():
92
- with gr.Tab("🏠 Home"):
93
- home.layout()
94
 
95
  with gr.Tab("πŸ” Login"):
96
  gr.Markdown("### Login or Sign Up")
@@ -125,9 +124,7 @@ with gr.Blocks() as demo:
125
  with gr.Tab("πŸ“˜ User Guide"):
126
  user_guide.layout()
127
 
128
- with gr.Tab("βš™οΈ Install"):
129
- install.layout()
130
-
131
  # Launch App
132
  if __name__ == "__main__":
133
  demo.launch()
 
10
  import warnings
11
 
12
  # Import pages (make sure each page has layout() function defined)
13
+
14
  import about
15
  import examples
16
  import community
17
  import user_guide
18
+
19
 
20
  # Suppress logs and warnings
21
  os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
 
89
  # Gradio App
90
  with gr.Blocks() as demo:
91
  with gr.Tabs():
92
+
 
93
 
94
  with gr.Tab("πŸ” Login"):
95
  gr.Markdown("### Login or Sign Up")
 
124
  with gr.Tab("πŸ“˜ User Guide"):
125
  user_guide.layout()
126
 
127
+
 
 
128
  # Launch App
129
  if __name__ == "__main__":
130
  demo.launch()