import gradio as gr projects = [ { "name": "AI Transfer Pricing Engine V2", "desc": "AI-driven arm’s length benchmarking and risk scoring.", "link": "https://huggingface.co/spaces/YOUR_LINK" }, { "name": "AI Transfer Pricing Engine", "desc": "Transfer pricing benchmarking and compliance engine.", "link": "#" }, { "name": "Deep Agentic Supply Chain AI", "desc": "AI system for forecasting and optimization.", "link": "#" } ] def show_projects(): html = "" for p in projects: html += f"""

{p['name']}

{p['desc']}

View Project
""" return html with gr.Blocks() as demo: gr.Markdown("# 🚀 YESBEE4AI PROJECT DASHBOARD") gr.Markdown("AI Finance Solutions | Deep Agents | CFO Intelligence") gr.HTML(show_projects()) demo.launch()