import marimo __generated_with = "0.13.1-dev16" app = marimo.App(layout_file="layouts/notebook.slides.json") @app.cell def _(mo): import marimo as mo mo.Html(""" Our t:able Legal Journey
""") return @app.cell def _(mo): # Page 2 Content mo.Html("""

A t:able Conversation!

But actually talking with them sparked creativity and opened doors to solutions!

Idea Lightbulb
""") return @app.cell def _(mo): # Page 3 Content mo.Html("""

Bonus: Team Mascots!

...and we discovered our legal partners appreciate cute companions too!

""") return @app.cell def _(mo): # Page 4: Conclusion mo.Html("""

Collaboration Wins!

Working together transforms challenges into opportunities. Legal can be a great partner!

Handshake
""") return @app.cell def _(): import marimo as mo return (mo,) if __name__ == "__main__": app.run()