from app.ui.home import init_home from app.ui.about import init_about import gradio as gr home = init_home() about = init_about() demo = gr.TabbedInterface( [home, about], ["Home", "About"], css="footer {display: none} .sort-button.svelte-1bvc1p0.svelte-1bvc1p0.svelte-1bvc1p0 {display: none;}" ) demo.launch()