-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (102 loc) · 2.55 KB
/
index.html
File metadata and controls
108 lines (102 loc) · 2.55 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes – KDE Note Management</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
color: #333;
}
header {
background: #4f5b93;
color: #fff;
padding: 2rem 1rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
margin-top: 0.5rem;
font-size: 1.2rem;
}
main {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
}
section {
margin-bottom: 2rem;
}
h2 {
color: #4f5b93;
margin-bottom: 1rem;
}
ul {
list-style: disc;
margin-left: 2rem;
}
.cta {
display: inline-block;
padding: 1rem 2rem;
background: #4f5b93;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 1rem;
}
</style>
</head>
<body>
<header>
<h1>Notes</h1>
<p>KDE Desktop Application for Note Management with Speech-to-Text</p>
<a href="#download" class="cta">Download Now</a>
</header>
<main>
<section id="features">
<h2>Features</h2>
<ul>
<li>Organize notes and notebooks hierarchically</li>
<li>Rich-text editor with images, headings, and bullet points</li>
<li>Speech-to-text integration for audio notes</li>
<li>Trash bin to restore or permanently delete notes</li>
<li>Profiles to separate activities (<code>--profile <dir></code>)</li>
<li>Automatic versioning and RPM packaging via CI/CD</li>
<li>English & Italian translations (i18n-ready)</li>
</ul>
</section>
<section id="download">
<h2>Download & Installation</h2>
<p>Clone the repository and install dependencies with Poetry:</p>
<pre>
git clone https://github.com/ekulos-com/Notes.git
cd Notes
poetry install
poetry run python main.py
</pre>
</section>
<section id="screenshots">
<h2>Screenshots</h2>
<p>Showcase your editor, notebook view, and speech-to-text features here.</p>
<!-- Add <img> tags for screenshots -->
</section>
</main>
<footer>
© 2025 Luca Pisani – MIT License
</footer>
</body>
</html>