rivapereira123 commited on
Commit
322894f
Β·
verified Β·
1 Parent(s): 8a52b53

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -205,7 +205,7 @@ with gr.Blocks(css="""
205
  outputs=linkedin_analysis_output
206
  )
207
 
208
- with gr.Tab("πŸ™ GitGuru (GitHub Reviewer)"):
209
  with gr.Row():
210
  with gr.Column(scale=1):
211
  github_readme_input = gr.Textbox(label="GitHub README Content", placeholder="Paste your main GitHub README content here", lines=10, interactive=True)
@@ -219,7 +219,7 @@ with gr.Blocks(css="""
219
  outputs=github_analysis_output
220
  )
221
 
222
- with gr.Tab("🧠 Smart Planner"):
223
  with gr.Row():
224
  with gr.Column(scale=1):
225
  planner_goal_input = gr.Textbox(label="Your Goal", placeholder="e.g., Become a Data Scientist", interactive=True)
@@ -234,7 +234,7 @@ with gr.Blocks(css="""
234
  outputs=roadmap_output
235
  )
236
 
237
- with gr.Tab("🎯 Task Tracker"):
238
  with gr.Row():
239
  with gr.Column(scale=1):
240
  task_name_input = gr.Textbox(label="Task Name", placeholder="e.g., Complete Python course", interactive=True)
@@ -280,7 +280,7 @@ with gr.Blocks(css="""
280
  outputs=[tasks_display, progress_bar, rewards_display]
281
  )
282
 
283
- with gr.Tab("πŸ“š Memo (Course Recommender)"):
284
  with gr.Row():
285
  with gr.Column(scale=1):
286
  memo_query_input = gr.Textbox(label="Ask about a course or topic", placeholder="e.g., Best Python courses for data science", interactive=True)
@@ -303,7 +303,7 @@ with gr.Blocks(css="""
303
  outputs=memo_output
304
  )
305
 
306
- with gr.Tab("πŸ“Š Visualizer"):
307
  with gr.Row():
308
  with gr.Column(scale=1):
309
  visualizer_goal_input = gr.Textbox(label="Your Goal", placeholder="e.g., Become a Data Scientist", interactive=True)
 
205
  outputs=linkedin_analysis_output
206
  )
207
 
208
+ with gr.Tab("πŸ™ GitGuru (GitHub Reviewer)", elem_id="gitguru-tab"):
209
  with gr.Row():
210
  with gr.Column(scale=1):
211
  github_readme_input = gr.Textbox(label="GitHub README Content", placeholder="Paste your main GitHub README content here", lines=10, interactive=True)
 
219
  outputs=github_analysis_output
220
  )
221
 
222
+ with gr.Tab("🧠 Smart Planner", elem_id="planner-card"):
223
  with gr.Row():
224
  with gr.Column(scale=1):
225
  planner_goal_input = gr.Textbox(label="Your Goal", placeholder="e.g., Become a Data Scientist", interactive=True)
 
234
  outputs=roadmap_output
235
  )
236
 
237
+ with gr.Tab("🎯 Task Tracker", elem_id="gitguru-tab"):
238
  with gr.Row():
239
  with gr.Column(scale=1):
240
  task_name_input = gr.Textbox(label="Task Name", placeholder="e.g., Complete Python course", interactive=True)
 
280
  outputs=[tasks_display, progress_bar, rewards_display]
281
  )
282
 
283
+ with gr.Tab("πŸ“š Memo (Course Recommender)", elem_id="gitguru-tab"):
284
  with gr.Row():
285
  with gr.Column(scale=1):
286
  memo_query_input = gr.Textbox(label="Ask about a course or topic", placeholder="e.g., Best Python courses for data science", interactive=True)
 
303
  outputs=memo_output
304
  )
305
 
306
+ with gr.Tab("πŸ“Š Visualizer", elem_id="gitguru-tab"):
307
  with gr.Row():
308
  with gr.Column(scale=1):
309
  visualizer_goal_input = gr.Textbox(label="Your Goal", placeholder="e.g., Become a Data Scientist", interactive=True)