Skip to content

Commit c711f37

Browse files
committed
add an "Our Libraries" Section to the site
1 parent de6e660 commit c711f37

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

_layouts/default.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,18 @@
4242
.small {
4343
font-size: small;
4444
}
45+
.flex-container {
46+
display: flex;
47+
max-width: 60vw;
48+
flex-direction: row;
49+
gap: 1em;
50+
flex-wrap: wrap;
51+
justify-content: space-around;
52+
}
53+
.flex-container > .card {
54+
width: 400px;
55+
/* margin: 2em; */
56+
}
4557
</style>
4658
<!-- Matomo -->
4759
<script>

index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,28 @@ <h2>Our Projects</h2>
2525
</div>
2626
</div>
2727
</div>
28+
<h2>Our Libraries</h2>
29+
<p class="small">Code intended for developers to integrate into their projects to improve rowing experiences</p>
30+
<div class="flex-container">
31+
<div class="card mb-4 box-shadow p-3">
32+
<a href="https://codeberg.org/OpenRowingCommunity/c2bluetooth" class="text-center">
33+
<h3 class="fw-bold">c2bluetooth</h3>
34+
</a>
35+
<p>A Flutter library for interfacing with Concept2 PM5-based machines over bluetooth</p>
36+
</div>
37+
<div class="card mb-4 box-shadow p-3">
38+
<a href="https://codeberg.org/OpenRowingCommunity/c2logbook" class="text-center">
39+
<h3 class="fw-bold">c2logbook</h3>
40+
</a>
41+
<p>A Flutter library for interfacing with the Concept2 online logbook API</p>
42+
</div>
43+
<div class="card mb-4 box-shadow p-3">
44+
<a href="https://codeberg.org/OpenRowingCommunity/csafe-fitness" class="text-center">
45+
<h3 class="fw-bold">csafe-fitness</h3>
46+
</a>
47+
<p>A Dart library for parsing CSAFE protocol packets used by various fitness vendors.</p>
48+
</div>
49+
</div>
2850
<p></p>
2951
<h2>Join the community</h2>
3052
<p><a href="https://codeberg.org/OpenRowingCommunity">Explore our Code →</a></p>

0 commit comments

Comments
 (0)