import streamlit as st # Markdown content with outline, emojis, links, and start-fast indicators markdown_content = """ # M365-Compatible Flow & Kanban Options 🚀 --- ### Microsoft Options - **📋 Microsoft Planner (Kanban)** - [Test It](https://tasks.office.com/) (Log in with M365) - **Start Fast?** ✅ Yes – Free with M365, add as a Teams tab, drag-and-drop in minutes. - **⚡ Microsoft Power Automate (Flow)** - [Test It](https://make.powerautomate.com/) (M365 login) - **Start Fast?** ⚠️ Kinda – Templates are quick, but custom flows need some learning. - **🗂️ Microsoft Lists (Kanban + Light Flow)** - [Test It](https://lists.live.com/) (M365 SharePoint) - **Start Fast?** ✅ Yes – Simple board view, M365-native, tweakable out of the box. - **🚀 Azure Boards (Advanced Kanban)** - [Test It](https://azure.microsoft.com/en-us/services/devops/boards/) (Free tier signup) - **Start Fast?** ❌ No – Needs Azure setup, better for tech-savvy teams. --- ### Non-Microsoft (M365-Compatible) - **🎴 Trello (Kanban)** - [Test It](https://trello.com/) (Free signup) - **Start Fast?** ✅ Yes – Free tier, intuitive, Teams integration in a snap. - **🌟 Asana (Kanban + Flow)** - [Test It](https://asana.com/) (Free signup) - **Start Fast?** ✅ Yes – Free plan, quick Kanban setup, basic automation included. - **🎨 Monday.com (Kanban + Flow)** - [Test It](https://monday.com/) (Free trial) - **Start Fast?** ⚠️ Kinda – Trial is slick, but full setup takes tweaking. - **🛠️ Virto Kanban Board (Kanban for SharePoint)** - [Test It](https://www.virtosoftware.com/sharepoint/kanban-board/) (Trial request) - **Start Fast?** ⚠️ Kinda – SharePoint-based, fast if you know M365, trial needs a request. --- ### Quick Pick - **Fastest Start**: 📋 **Planner** or 🎴 **Trello** – Zero learning curve, M365-ready. - **Flow + Kanban**: ⚡ **Power Automate** + 📋 **Planner** (M365) or 🌟 **Asana** (standalone). """ # Streamlit app setup st.title("M365 Flow & Kanban Options Explorer") st.markdown(markdown_content, unsafe_allow_html=True) # Render Markdown with links st.write("Click the 'Test It' links to try each tool!")