import gradio as gr from ui.lawbot_ui import get_lawbot_tab from ui.id_assist_ui import get_id_assist_tab def get_ui(): # πŸ“Œ Global disclaimer & note gr.Markdown( """
⚠️ Disclaimer: This chatbot is intended for educational and demonstration purposes only. It is not a substitute for professional legal advice or representation.

πŸ•’ Note: The chatbot's responses may be slightly slow as the model is large and runs on limited resources provided by the hosting environment.
""", elem_classes="centered-text" ) # πŸ›‘οΈ App Title gr.Markdown( """
πŸ•ŠοΈ Saarthi – Connecting Every Citizen to Justice and Identity Rights with AI
""" ) gr.Markdown("---") # πŸ“ Tabs get_lawbot_tab() get_id_assist_tab() gr.Markdown("Made by TEAM AtoM⚑️", elem_classes="centered-text")