Skip to content

Instantly share code, notes, and snippets.

@AustinWood
Last active December 10, 2025 03:33
Show Gist options
  • Select an option

  • Save AustinWood/f5f572df146d478a163ba77f8912a97a to your computer and use it in GitHub Desktop.

Select an option

Save AustinWood/f5f572df146d478a163ba77f8912a97a to your computer and use it in GitHub Desktop.
Organization Chart - Mermaid Diagram

Organization Chart

%%{init: {'theme':'base', 'themeVariables': { 'fontSize':'16px'}}}%%
flowchart TB
    subgraph Matt[" "]
        direction LR
        PM[Product Manager Matt]

        subgraph Austin[" "]
            direction TB
            TL1[Tech Lead Austin]
            SE1[Software Engineer Max]

            subgraph AustinProjects[" "]
                direction LR
                P1((Next Health))
                P2((Docovia))
            end
        end

        subgraph Serhii[" "]
            direction TB
            SE2[Software Engineer Serhii]

            subgraph SerhiiProjects[" "]
                direction LR
                P3((Practice Interviews))
                P4((Fractal OS))
            end
        end

        subgraph Scott[" "]
            direction TB
            TL2[Tech Lead Scott]
            P5((Vitaboom))
        end

        subgraph Joshua[" "]
            direction TB
            TL3[Tech Lead Joshua]
            SE3[Software Engineer Rigo]
            T1((Therapist Genie))
        end
    end

    classDef productManager fill:#e6f2ff,stroke:#333,stroke-width:2px
    classDef techLead fill:#d4e6f1,stroke:#333,stroke-width:2px
    classDef techLeadAlt fill:#d0f0e8,stroke:#333,stroke-width:2px
    classDef engineer fill:#fff9c4,stroke:#333,stroke-width:2px
    classDef project fill:#fce4ec,stroke:#333,stroke-width:2px
    classDef fractal fill:#e3f2fd,stroke:#333,stroke-width:2px

    class PM productManager
    class TL1 techLead
    class TL2,TL3 techLeadAlt
    class SE1,SE2,SE3 engineer
    class P1,P2,P3,P5,T1 project
    class P4 fractal
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment