-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (92 loc) · 2.27 KB
/
Copy pathindex.html
File metadata and controls
93 lines (92 loc) · 2.27 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
91
92
93
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MunnezzAssistant</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: #f4f6f8;
color: #333;
margin: 0;
padding: 0;
text-align: center;
}
header {
padding: 2rem 1rem;
}
header img {
max-width: 180px;
}
h1 {
font-size: 2.2rem;
margin: 1rem 0 0.5rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.icon {
width: 32px;
height: 32px;
}
p.subtitle {
font-size: 1.1rem;
margin-bottom: 1.5rem;
color: #555;
}
ul {
list-style: none;
padding: 0;
font-size: 1.1rem;
}
ul li {
margin: 0.5rem 0;
}
.cta {
display: inline-block;
margin-top: 2rem;
padding: 1rem 2rem;
background: #ff7f00;
color: white;
font-weight: bold;
text-decoration: none;
border-radius: 6px;
transition: background 0.3s ease;
}
.cta:hover {
background: #e86f00;
}
footer {
margin-top: 3rem;
padding: 1rem;
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<header>
<img src="logo.png" alt="MunnezzAssistant logo" />
<h1>
MunnezzAssistant
<img src="https://www.home-assistant.io/images/favicon.ico" class="icon" alt="Home Assistant">
</h1>
<p class="subtitle">La gestione intelligente della raccolta differenziata per Home Assistant</p>
</header>
<main>
<ul>
<li>✅ Facile da installare</li>
<li>✅ Notifiche giornaliere smart</li>
<li>✅ Compatibile con Home Assistant 2024.12.0+</li>
</ul>
<a href="https://vesuviocode.gumroad.com/l/pelkif" class="cta" target="_blank">Scarica gratuitamente MunnezzAssistant</a>
<p style="margin-top: 1rem; font-size: 0.9rem; color: #666;">Progetto gratuito. Se vuoi, puoi supportare lo sviluppo con una donazione libera su Gumroad.</p>
</main>
<footer>
© 2025 Ivan Aragione • Powered by GitHub Pages • Non affiliato con Home Assistant
</footer>
</body>
</html>