team.hbs

 1{{#> layout }}
 2
 3<div class="bg-white">
 4    <div class="container mx-auto py-12 px-8 md:px-12 lg:flex lg:flex-row">
 5        <div class="mb-16 lg:mb-0 lg:flex-1 lg:mr-8 xl:mr-16">
 6            <img src="https://github.com/nathansobo.png?size=200" class="mx-auto mb-4 h-28 rounded-full">
 7            <div>
 8                <a href="https://github.com/nathansobo"
 9                    class="block text-center mb-4 font-display text-2xl font-bold whitespace-nowrap hover:underline">
10                    NATHAN SOBO
11                </a>
12                <div class="prose md:prose-lg lg:prose xl:prose-lg">
13                    Nathan joined GitHub in late 2011 to build the <a href="https://atom.io">Atom text editor</a>, and
14                    he led the Atom team until 2018. He also co-led development of <a
15                        href="https://teletype.atom.io">Teletype for Atom</a>, pioneering one of the first production
16                    uses of conflict-free replicated data types for collaborative text editing. He's been dreaming about
17                    building the world’s best text editor since he graduated from college, and is excited to finally
18                    have
19                    the knowledge, tools, and resources to achieve this vision.
20                </div>
21            </div>
22        </div>
23        <div class="mb-16 lg:mb-0 lg:flex-1 lg:mr-8 xl:mr-16">
24            <img src="https://github.com/as-cii.png?size=200" class="mx-auto mb-4 h-28 rounded-full">
25            <div>
26                <a href="https://github.com/as-cii"
27                    class="block text-center mb-4 font-display text-2xl font-bold whitespace-nowrap hover:underline">
28                    ANTONIO SCANDURRA
29                </a>
30                <div class="prose md:prose-lg lg:prose xl:prose-lg">
31                    Antonio joined the Atom team in 2014 while still in university after his outstanding open source
32                    contributions caught the attention of the team. He later joined Nathan in architecting <a
33                        href="https://teletype.atom.io">Teletype for
34                        Atom</a> and researching the foundations of what has turned into Zed. For the last two years,
35                    he’s
36                    become an expert in distributed systems and conflict-free replicated data types through the
37                    development of a real-time, distributed, conflict-free database implemented in Rust for <a
38                        href="https://ditto.live">Ditto</a>.
39                </div>
40            </div>
41        </div>
42        <div class="mb-16 lg:mb-0 lg:flex-1">
43            <img src="https://github.com/maxbrunsfeld.png?size=200" class="mx-auto mb-4 h-28 rounded-full">
44            <div>
45                <a href="https://github.com/maxbrunsfeld"
46                    class="block text-center mb-4 font-display text-2xl font-bold whitespace-nowrap hover:underline">
47                    MAX BRUNSFELD
48                </a>
49                <div class="prose md:prose-lg lg:prose xl:prose-lg">
50                    Max joined the Atom team in 2013 after working at Pivotal Labs. While driving Atom towards its 1.0
51                    launch during the day, Max spent nights and weekends building <a
52                        href="https://tree-sitter.github.io">Tree-sitter</a>, a blazing-fast and
53                    expressive incremental parsing framework that currently powers all code analysis at GitHub. Before
54                    leaving to start Zed, Max helped GitHub's semantic analysis team integrate Tree-sitter to support
55                    syntax highlighting and code navigation on <a href="https://github.com">github.com</a>.
56                </div>
57            </div>
58        </div>
59    </div>
60</div>
61
62{{/layout}}