Skip to content

Commit c127874

Browse files
committed
add index.html
1 parent cdbcc7b commit c127874

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

index.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Home Assistant OS JSON Files - ameriDroid</title>
7+
<style>
8+
body {
9+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
10+
max-width: 800px;
11+
margin: 40px auto;
12+
padding: 0 20px;
13+
line-height: 1.6;
14+
color: #333;
15+
}
16+
h1 {
17+
color: #03a9f4;
18+
border-bottom: 2px solid #03a9f4;
19+
padding-bottom: 10px;
20+
}
21+
.json-links {
22+
background: #f5f5f5;
23+
padding: 20px;
24+
border-radius: 8px;
25+
margin: 20px 0;
26+
}
27+
.json-links a {
28+
display: block;
29+
color: #0277bd;
30+
text-decoration: none;
31+
margin: 10px 0;
32+
padding: 10px;
33+
background: white;
34+
border-radius: 4px;
35+
border: 1px solid #ddd;
36+
}
37+
.json-links a:hover {
38+
background: #e3f2fd;
39+
border-color: #03a9f4;
40+
}
41+
.description {
42+
margin: 20px 0;
43+
}
44+
</style>
45+
</head>
46+
<body>
47+
<h1>Home Assistant OS JSON Files</h1>
48+
49+
<div class="description">
50+
<p>This page provides access to modified version JSON files for the indiedroid Nova's Home Assistant OS builds.</p>
51+
</div>
52+
53+
<div class="json-links">
54+
<a href="stable.json">📄 Stable Version JSON</a>
55+
<a href="beta.json">📄 Beta Version JSON</a>
56+
</div>
57+
58+
<footer>
59+
<p>Maintained by <a href="https://ameridroid.com">ameriDroid</a></p>
60+
</footer>
61+
</body>
62+
</html>

0 commit comments

Comments
 (0)