Spaces:
Sleeping
Sleeping
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!") |