-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (53 loc) · 1.93 KB
/
index.html
File metadata and controls
57 lines (53 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Codegreen framework</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #2c2c2c;
color: #4af626;
font-family: 'Courier New', Courier, monospace;
font-size: 22px;
}
.container {
text-align: center;
background-color: #333;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
h1 {
margin-bottom: 15px;
}
p {
margin: 0;
}
li{
text-align: left;
}
a {
color: #4af626;; /* Grey link color */
}
</style>
</head>
<body>
<div class="container">
<h2>Welcome to Codegreen framework website!</h2>
<p>Our goal is to minimize the carbon emissions generated by computation.</p><p>Below are links to various components:</p>
<ul>
<li> <a target="_blank" href="https://codegreen-framework.github.io/codegreen-core/"><b>The core package</b></a> [ <a target="_blank" href="https://github.com/codegreen-framework/codegreen-core">github</a> ] </li>
<li> <a target="_blank" href="https://codegreen.world">Main Website</a> [ <a target="_blank" href="https://github.com/codegreen-framework/codegreen-web">github</a> ] </li>
<li> <a target="_blank" href="https://codegreen-framework.github.io/codegreen-client/">The client package</a> [ <a target="_blank" href="https://github.com/codegreen-framework/codegreen-client">github</a> ] </li>
</ul>
</div>
</body>
</html>