This repository has been archived by the owner on Jun 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
142 lines (129 loc) · 5.75 KB
/
index.html
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<html>
<head>
<!--<!– Global site tag (gtag.js) - Google Analytics –>-->
<!--<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119313091-1"></script>-->
<!--<script>-->
<!--window.dataLayer = window.dataLayer || [];-->
<!--function gtag(){dataLayer.push(arguments);}-->
<!--gtag('js', new Date());-->
<!--gtag('config', 'UA-119313091-1');-->
<!--</script>-->
<title>Kodein Framework</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="imgs/KodeinFramework_fav.png" />
<script type="text/javascript" src="out/kotlin.js"></script>
<script type="text/javascript" src="out/app.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
</head>
<body>
<div id="strip" style="display: none">
<div id="header">
<div id="menu">
<a class="goto" href="#get-started">GET STARTED</a>
<a class="goto" href="#about">ABOUT</a>
<a class="goto" href="#kodein-koders">KODEIN KODERS</a>
</div>
<div class="logo">
<img class="logo-img" alt="kodein logo" src="imgs/logo-white.svg" />
<div>
<h1><a class="goto" href="#">KODEIN<span>Framework</span></a></h1>
<h2>painless <img src="imgs/kotlin-white.svg" /> kotlin</h2>
</div>
</div>
<div id="platforms">
<h3>ANDROID</h3>
<h3>iOS</h3>
<h3>WEB</h3>
<h3>DESKTOP</h3>
</div>
</div>
<span id="header-shadow"></span>
<a id="get-started"></a>
<div id="cards">
<div class="card">
<a href="di/"><h2 style="background-color: #EF822B">KODEIN<b>DI</b></h2></a>
<div class="content">
<small>multi-platform</small>
<h3>Inversion of Control</h3>
<p>The #1 Dependency Injection library in Kotlin, with emphasis on readability & integration.</p>
</div>
<p class="links">
<a href="di/">DISCOVER</a>
<a href="Kodein-DI/">DOCUMENTATION</a>
<a href="https://github.com/Kodein-Framework/Kodein-DI">GITHUB</a>
</p>
</div>
<div class="card">
<h2 style="background-color: #1B93D2">KODEIN<b>DB</b></h2>
<div class="content">
<small>multi-platform</small>
<h3>Database</h3>
<p>Embedded No-SQL that supports indexing and partial keys.</p>
</div>
<p class="links">
In progress...
</p>
</div>
<div class="card">
<h2 style="background-color: #8E4C97">KODEIN<b>MVP</b></h2>
<div class="content">
<small>multi-platform</small>
<h3>MVP Architecture</h3>
<p>Model View Presenter Architecture that fits all platforms.</p>
</div>
<p class="links">
In progress...
</p>
</div>
<div class="card">
<h2 style="background-color: #FCC319">KODEIN<b>LOG</b></h2>
<div class="content">
<small>multi-platform</small>
<h3>Logging & Reporting</h3>
<p>Bug & usage report.</p>
</div>
<p class="links">
In progress...
</p>
</div>
<div class="card">
<h2 style="background-color: #EB5A44">KODEIN<b>SYNC</b></h2>
<div class="content">
<small>multi-platform</small>
<h3>DB & DTO synchronization</h3>
<p>In the cloud.</p>
</div>
<p class="links">
In progress...
</p>
</div>
</div>
<a id="about"></a>
<div class="about grey">
<h1 class="light">The Kodein Framework focuses on<br /><b>Application Business Code</b></h1>
<img src="imgs/graph-business.png" />
</div>
<div class="about row">
<h1 class="light">The Kodein Framework is built on<br /><b>solid foundations</b></h1>
<img src="imgs/graph-foundations.png" />
</div>
<div class="about grey">
<h1 class="light">The Kodein Framework is <br /><b>opinionated and tooled</b></h1>
<img src="imgs/graph-opinions.png" />
</div>
<span id="footer-shadow"></span>
<a id="kodein-koders"></a>
<div id="footer" class="small">
<h3>Built by</h3>
<div class="logo">
<img class="logo-img" alt="kodein logo" src="imgs/logo-white.svg" />
<div>
<h1><a href="https://kodein.net">KODEIN<span>Koders</span></a></h1>
<h2>painless technology</h2>
</div>
</div>
</div>
</div>
</body>
</html>