-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (86 loc) · 3.91 KB
/
index.html
File metadata and controls
90 lines (86 loc) · 3.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Yafrl - Yet Another Functional Reactive Library</title>
<link href="https://yafrl.github.io/yafrl_logo.png" rel="icon" type="image/png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://yafrl.github.io/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="#">Yafrl</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#">Overview</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://yafrl.github.io/yafrl/docs/yafrl-core">Documentation</a>
</li>
<li>
<a class="nav-link" href="#">Tutorials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/yafrl/yafrl">GitHub</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="hero">
<img src="https://yafrl.github.io/yafrl_logo.png" alt="Yafrl Logo"/>
<h1>Yafrl</h1>
<p>A library for Functional Reactive programming in Kotlin.<br/>Elegant. Composable. Deterministic. </p>
<a href="#" class="btn btn-primary btn-lg mt-3">Get Started</a>
</section>
<section class="details-section">
<div class="container">
<h2>Why Yafrl?</h2>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="text-center">
<img src="https://yafrl.github.io/signal_graph.png" alt="Signal Graph" class="img-fluid mb-3" style="max-height: 150px;" />
</div>
<h4>Synchronous by default</h4>
<p>
Unlike kotlinx.coroutines, Yafrl is synchronous by default. This means fewer surprises
in your code and better composability, especially in environments like UI frameworks
where determinism is crucial.
</p>
</div>
<div class="col">
<div class="text-center">
<img src="https://yafrl.github.io/cat_testing.png" alt="Cat Testing" class="img-fluid mb-3" style="max-height: 150px;" />
</div>
<h4>Easy to test</h4>
<p>
Yafrl embraces determinism and reproducibility at its core. Its built-in time-travel
debugger makes testing and debugging a breeze. Run your business and UI logic
in isolation without threading concerns.
</p>
</div>
<div class="col">
<div class="text-center">
<img src="https://yafrl.github.io/jetpack_compose_icon.png" alt="Jetpack Compose" class="img-fluid mb-3" style="max-height: 150px;" />
</div>
<h4>Integrations</h4>
<p>
Out of the box, Yafrl supports Jetpack Compose and kotlinx.coroutines, allowing seamless integration
with existing Kotlin code-bases.
</p>
</div>
</div>
</div>
</section>
<footer>
<p>Copyright © 2025 Yafrl Project. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>