import gradio as gr css = """ footer { visibility: hidden; } """ def create_home_screen(): with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as home: gr.Image("banner.png", show_label=False) gr.Markdown("# 전문 시스템 그룹") gr.Markdown("## \n") # News Item 1 with gr.Row(): with gr.Column(scale=1): gr.Image("news2.jpg", show_label=False) with gr.Column(scale=2): gr.Markdown(""" 🤖[아바타 스튜디오 플랫폼] http://hugpu.ai:7899 \n ### \n 🤖 [숏폼 스튜디오] http://211.233.58.202:7960 \n ### \n 🤖 [AI 개인비서: JinJAVIS] http://hugpu.ai:8000 \n ### \n 🤖 [사진+음성 to 말하는 영상] http://hugpu.ai:7895 \n ### \n 🤖 [통합 Medim 블로그 시스템] http://hugpu.ai:7917 \n ### \n 🤖 [초고속/텍스트 반영 로고 생성] http://hugpu.ai:7897 \n ### \n 🤖 [패션] http://hugpu.ai:7896 \n ### \n 🤖 [I+T2I 캐릭터 프로필] http://hugpu.ai:7889 \n ### \n 🤖 [메타 스레드 AUTO] http://hugpu.ai:7915 \n ### \n 🤖 [Image + Text to Image(IP-ADAPT)] http://hugpu.ai:7890 \n ### \n 🤖 [모션 따라하기] http://hugpu.ai:7894 \n ### \n 🤖 [알리바바 'AnyText'] http://hugpu.ai:7913 \n ### \n """) gr.Markdown("## \n") # News Item 2 with gr.Row(): with gr.Column(scale=1): gr.Image("news2.jpg", show_label=False) with gr.Column(scale=2): gr.Markdown(""" 🤖 [HALT: FaceFusion] http://hugpu.ai:7880 \n ### \n 🤖 [HALT: FLUX Multi: IP + CANNY + LORA] http://hugpu.ai:7891 \n ### \n """) gr.Markdown("## \n") return home if __name__ == "__main__": home = create_home_screen() home.launch(auth=("gini","pick"))