Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,28 +65,28 @@ <h2 style="text-align:center;">Our Projects</h2>
<div class="content-block" id="acorn">
<img src="projects/acorn_logo.png" class="project-logo"><h3>Acorn</h3>
<h4>An open-source Holochain-based project management & collaboration app for distributed teams with complex projects</h4>
<p><a class="btn" href="https://github.com/h-be/acorn/releases">Try a prototype release</a> <a class="btn" href="https://github.com/h-be/acorn-docs/blob/master/README.md">Learn more about Acorn</a> <a href="https://github.com/h-be/acorn-docs/blob/master/README.md"></a></p>
<div class="btn-box"><a class="btn btn-outlined" href="https://github.com/h-be/acorn/releases">Try a prototype release</a> <a class="btn btn-outlined" href="https://github.com/h-be/acorn-docs/blob/master/README.md">Learn more about Acorn</a></div>
</div>

<div class="content-block" id="SnapMail">
<img src="projects/snapmail_logo.png" class="project-logo"><h3>SnapMail</h3>
<h4>Peer-to-peer email on Holochain</h4>
<p>SnapMail was developed by Eric Harris-Braun and Asher King in 1990 and it has been providing cross-platform, peer-to-peer messaging for the three decades since. Lighningrod Labs is now updating SnapMail using Holochain infrastructure for the next three.</p>
<p>Try a prototype release from the <a href="https://github.com/glassbeadsoftware/snapmail-release">SnapMail releases page</a> and learn more about the project from the <a href="https://github.com/glassbeadsoftware/">SnapMail GitHub repos</a>.</p>
<div class="btn-box"><a class="btn btn-outlined" href="https://github.com/glassbeadsoftware/snapmail-release">Try a prototype release</a> <a class="btn btn-outlined" href="https://github.com/glassbeadsoftware/">Learn more about SnapMail</a></div>
</div>

<div class="content-block" id="Syn">
<h3>Syn</h3>
<h4>Real-time collaboration on Holochain</h4>
<p>Real-time simultanous editing of documents is perhaps the most important addition of the modern web. It's what makes Google Docs, Miro, and HackMD so much more productive and valuable to use than any singleplayer version of a similar app. Syn makes it indulgently easy for developers to build collaborative apps on Holochain. The Syn library and zomes do all the heavy lifiting.</p>
<p>Read more in <a href="https://blog.holochain.org/decentralized-next-level-collaboration-apps-with-syn/">Eric's blog post about Syn</a> and explore the details in <a href="https://github.com/holochain/syn">Syn's github repo.</a></p>
<div class="btn-box"><a class="btn btn-outlined" href="https://blog.holochain.org/decentralized-next-level-collaboration-apps-with-syn/">Read more about Syn</a> <a class="btn btn-outlined" href="https://github.com/holochain/syn">Explore the details on GitHub</a></div>
</div>

<div class="content-block" id="Where">
<h3>Where</h3>
<h4>A playground for group self-awareness (awhereness?) on holochain</h4>
<p>Groups, especially remote colaborative groups, often lack contextual information about collaborators that makes working together harder. Co-locating oneself across a number of spaces in the context of a group (or groups) provides an important avenue for improving both sense-making and working together. Where provides a generalized grammar for creating shared maps for groups to see the emergent "whereness" of each other across those them, as well as the grammatics to self-evolved these spaces and how to represent "location" in them.</p>
<p>Explore the details in <a href="https://github.com/lightningrodlabs/where">Where's github repo.</a></p>
<div class="btn-box"><a class="btn btn-outlined" href="https://github.com/lightningrodlabs/where">Explore the details on GitHub</a></div>
</div>

</div>
Expand Down
12 changes: 11 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@
a.btn {
display: inline-block;
padding: 10px 25px;
margin-left: 20px;
text-decoration: none;
font-weight: 400;
border-radius: 8px;
Expand All @@ -142,6 +141,17 @@ a.btn {
margin: 10px;
}

.btn-box {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 20px;
}

#projects a.btn {
padding: 7px 15px;
}

a.btn-outlined {
background-color: transparent;
color: black;
Expand Down