-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
299 lines (289 loc) · 20.3 KB
/
index.html
File metadata and controls
299 lines (289 loc) · 20.3 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Taskist - Simple Open Source Project Management</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet" />
<link href="assets/css/site.css" rel="stylesheet" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
"core-primary": "#00a3c2",
"core-accent": "#04eeb2",
"core-dark": "#00839e",
"core-light": "#80f7d9",
"gray-bg": "#f8fafc",
},
fontFamily: {
sans: ["Inter", "sans-serif"],
},
},
},
};
</script>
</head>
<body class="bg-gray-50 text-gray-800">
<header class="bg-white/90 backdrop-blur-md sticky top-0 z-50 shadow-md">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<a href="#" class="text-3xl font-extrabold tracking-tight text-core-primary">
<img src="assets/images/logo.png" class="header-logo" alt="Taskist" />
</a>
<div class="hidden md:flex items-center space-x-8">
<a href="#features" class="text-gray-600 hover:text-core-primary font-medium transition-colors">Features</a>
<a href="#demo" class="text-gray-600 hover:text-core-primary font-medium transition-colors">Demo</a>
<a href="#roadmap" class="text-gray-600 hover:text-core-primary font-medium transition-colors">Roadmap</a>
</div>
<a href="https://github.com/taskist/taskist"
target="_blank"
class="hidden md:flex items-center space-x-2 bg-gray-800 text-white px-4 py-2 rounded-lg hover:bg-gray-700 transition-colors shadow-lg">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M12 2C6.477 2 2 6.477 2 12c0 4.418 2.865 8.168 6.839 9.492.5.092.682-.217.682-.482 0-.237-.009-.868-.014-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.031-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.203 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.338 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.001 10.001 0 0022 12c0-5.523-4.477-10-10-10z"
clip-rule="evenodd"></path>
</svg>
<span>GitHub</span>
</a>
<button id="mobile-menu-button" class="md:hidden text-gray-700 focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</nav>
<div id="mobile-menu" class="hidden md:hidden px-6 pt-2 pb-4 space-y-2 bg-white border-t border-gray-100">
<a href="#features" class="block text-gray-600 hover:text-core-primary transition-colors py-1">Features</a>
<a href="#demo" class="block text-gray-600 hover:text-core-primary transition-colors py-1">Demo</a>
<a href="#roadmap" class="block text-gray-600 hover:text-core-primary transition-colors py-1">Roadmap</a>
<a href="https://github.com/taskist/taskist" target="_blank" class="block text-gray-600 hover:text-core-primary transition-colors py-1">GitHub</a>
</div>
</header>
<main>
<section id="home" class="relative pt-24 pb-32 sm:pt-32 lg:pt-40 overflow-hidden">
<div aria-hidden="true" class="absolute inset-0 -z-10">
<div class="absolute inset-x-0 top-0 h-[700px] bg-gradient-to-b from-core-light/20"></div>
<div class="absolute top-0 left-0 -ml-48 -mt-24 w-[700px] h-[700px] rounded-full bg-core-primary/10 blur-3xl"></div>
<div class="absolute top-1/2 right-0 -mr-48 -mt-24 w-[600px] h-[600px] rounded-full bg-core-accent/10 blur-3xl"></div>
</div>
<div class="container mx-auto px-6 text-center relative z-10">
<h1 class="text-5xl md:text-7xl font-extrabold text-gray-900 leading-tight tracking-tight">
<span class="block mb-2">Simplified, Open-Source</span>
<span class="bg-clip-text text-transparent bg-gradient-to-r from-core-primary to-core-accent"> CR, Bug, & Feature Tracking. </span>
</h1>
<p class="mt-8 max-w-3xl mx-auto text-xl text-gray-600">
Taskist is the straightforward, self-hosted solution your development team needs. Manage Change Requests (CRs), prioritize Bugs,
and plan Features in one clean, clutter-free environment.
</p>
<div class="mt-10 flex justify-center items-center gap-5 flex-wrap">
<a href="#demo"
class="bg-core-primary text-white font-semibold px-10 py-3.5 rounded-xl shadow-xl hover:bg-core-dark transition-all transform hover:scale-[1.02] focus:ring-4 focus:ring-core-light focus:ring-offset-2">
Live Demo (Comming soon)
</a>
<a href="https://github.com/taskist/taskist"
target="_blank"
class="bg-white text-gray-800 font-semibold px-10 py-3.5 rounded-xl shadow-lg hover:bg-gray-100 transition-all transform hover:scale-[1.02] border border-gray-200">
View on GitHub
</a>
</div>
</div>
</section>
<section id="features" class="py-24 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-4xl font-extrabold text-gray-900">Core Capabilities for Engineering Teams</h2>
<p class="mt-4 text-xl text-gray-600">A focused toolset to manage your entire development lifecycle—from concept to code.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-8 max-w-5xl mx-auto">
<div class="feature-card bg-gray-50 p-8 rounded-xl border border-gray-200">
<div class="bg-indigo-600 text-white rounded-xl w-14 h-14 flex items-center justify-center mb-4 shadow-lg">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path>
</svg>
</div>
<h3 class="text-2xl font-bold mb-3 text-indigo-700">Unified Tracking (CR, Bug, Feature)</h3>
<p class="text-gray-600">
Log and organize all work types—formal Change Requests, critical Bugs, and strategic Features—in a single, consolidated
view. Never lose sight of priorities.
</p>
</div>
<div class="feature-card bg-gray-50 p-8 rounded-xl border border-gray-200">
<div class="bg-purple-600 text-white rounded-xl w-14 h-14 flex items-center justify-center mb-4 shadow-lg">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"></path>
</svg>
</div>
<h3 class="text-2xl font-bold mb-3 text-purple-700">Direct Assignment & Status Workflow</h3>
<p class="text-gray-600">
Easily assign tasks, define clear statuses, and provide comments. The simple UI reduces cognitive load, allowing teams to collaborate
efficiently without friction.
</p>
</div>
<div class="feature-card bg-gray-50 p-8 rounded-xl border border-gray-200">
<div class="bg-pink-600 text-white rounded-xl w-14 h-14 flex items-center justify-center mb-4 shadow-lg">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M5 8h14M5 8a2 2 0 110-4h14a2 2 0 110 4M5 8v10a2 2 0 002 2h10a2 2 0 002-2V8m-9 4h4"></path>
</svg>
</div>
<h3 class="text-2xl font-bold mb-3 text-pink-700">Self-Hosted Security & Control</h3>
<p class="text-gray-600">
As a true Open Source solution, you maintain complete ownership of your infrastructure and data. Deploy Taskist directly onto your
private network.
</p>
</div>
<div class="feature-card bg-gray-50 p-8 rounded-xl border border-gray-200">
<div class="bg-indigo-600 text-white rounded-xl w-14 h-14 flex items-center justify-center mb-4 shadow-lg">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"></path>
</svg>
</div>
<h3 class="text-2xl font-bold mb-3 text-indigo-700">Bootstrap 5 & SQL Server Ready</h3>
<p class="text-gray-600">
Built on modern, stable standards—Bootstrap 5 for a responsive UI and SQL Server for enterprise-grade data handling and
scalability.
</p>
</div>
</div>
</div>
</section>
<section id="demo" class="py-24 bg-gray-50">
<div class="container mx-auto px-6 text-center">
<h2 class="text-4xl font-extrabold text-gray-900">Experience the Clean UI</h2>
<p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
See how Taskist simplifies your workflow. No sign-up, no commitment—just clarity.
</p>
<div class="mt-12 bg-white rounded-xl shadow-2xl p-6 max-w-6xl mx-auto border border-gray-100 overflow-hidden">
<svg class="w-full h-auto rounded-lg shadow-inner" viewBox="0 0 1200 600" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="0" width="1200" height="600" rx="12" fill="#F3F4F6" />
<rect x="20" y="20" width="1160" height="40" rx="8" fill="#FFFFFF" class="shadow-md" />
<circle cx="40" cy="40" r="10" fill="#EF4444" />
<circle cx="65" cy="40" r="10" fill="#F59E0B" />
<circle cx="90" cy="40" r="10" fill="#04EEB2" />
<rect x="20" y="80" width="200" height="500" rx="8" fill="#FFFFFF" class="shadow-inner" />
<rect x="240" y="80" width="940" height="500" rx="8" fill="#FFFFFF" class="shadow-inner" />
<rect x="250" y="95" width="250" height="20" rx="4" fill="#00a3c2" />
<rect x="250" y="140" width="150" height="15" rx="4" fill="#D1D5DB" />
<rect x="250" y="165" width="300" height="15" rx="4" fill="#E5E7EB" />
<rect x="250" y="200" width="150" height="20" rx="4" fill="#04eeb2" />
<rect x="250" y="245" width="150" height="15" rx="4" fill="#D1D5DB" />
<rect x="250" y="270" width="300" height="15" rx="4" fill="#E5E7EB" />
<rect x="35" y="100" width="170" height="15" rx="4" fill="#374151" />
<rect x="35" y="140" width="150" height="10" rx="4" fill="#6B7280" />
</svg>
</div>
<div class="mt-12">
<a href="#"
class="bg-core-primary text-white font-semibold px-12 py-4 rounded-xl shadow-2xl hover:bg-core-dark transition-all transform hover:scale-[1.05] focus:ring-4 focus:ring-core-light focus:ring-offset-2">
Live Demo (Comming soon)
</a>
</div>
</div>
</section>
<section id="roadmap" class="py-24 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-4xl font-extrabold text-gray-900">Our Strategic Development Roadmap</h2>
<p class="mt-4 text-xl text-gray-600">A clear path forward, driven by community contribution and professional standards.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="bg-white p-6 rounded-xl border-l-4 border-core-accent shadow-md">
<h3 class="text-xl font-bold mb-2">Custom Fields & Properties</h3>
<p class="text-gray-600">
Add custom fields to tasks (e.g., impact, complexity) to fit your team's unique workflow and reporting requirements.
</p>
<div class="mt-4 text-sm font-bold text-core-primary">CURRENT FOCUS 🚀</div>
</div>
<div class="bg-white p-6 rounded-xl border-l-4 border-core-primary shadow-md">
<h3 class="text-xl font-bold mb-2">GitHub & GitLab Integration</h3>
<p class="text-gray-600">
Link tasks directly to source control (issues, PRs) to automatically sync status and progress across platforms.
</p>
<div class="mt-4 text-sm font-semibold text-core-primary">PLANNED</div>
</div>
<div class="bg-white p-6 rounded-xl border-l-4 border-core-primary shadow-md">
<h3 class="text-xl font-bold mb-2">Communication Integration</h3>
<p class="text-gray-600">Get notifications and create/update tasks directly from chat tools like Slack and Microsoft Teams.</p>
<div class="mt-4 text-sm font-semibold text-core-primary">PLANNED</div>
</div>
<div class="bg-white p-6 rounded-xl border-l-4 border-gray-400 shadow-md opacity-80">
<h3 class="text-xl font-bold mb-2 text-gray-700">Advanced Reporting Module</h3>
<p class="text-gray-600">Generate visual reports on velocity, throughput, and CR resolution rates for executive summaries.</p>
<div class="mt-4 text-sm font-semibold text-gray-500">RESEARCH PHASE</div>
</div>
<div class="bg-white p-6 rounded-xl border-l-4 border-core-primary shadow-md">
<h3 class="text-xl font-bold mb-2">Public Feature Board</h3>
<p class="text-gray-600">A dedicated view for public feedback, allowing users to submit ideas and vote on future developments.</p>
<div class="mt-4 text-sm font-semibold text-core-primary">PLANNED</div>
</div>
<div class="bg-white p-6 rounded-xl border-l-4 border-gray-400 shadow-md opacity-80">
<h3 class="text-xl font-bold mb-2 text-gray-700">AI Triage Assistant</h3>
<p class="text-gray-600">An intelligent assistant to help automatically categorize new issues, suggest priority, and assignees.</p>
<div class="mt-4 text-sm font-semibold text-gray-500">RESEARCH PHASE</div>
</div>
</div>
</div>
</section>
<section id="cta" class="py-24">
<div class="container mx-auto px-6 text-center">
<div class="gradient-bg-custom max-w-5xl mx-auto p-16 rounded-3xl shadow-2xl">
<h2 class="text-4xl md:text-5xl font-extrabold text-white leading-tight">Take Control of Your Project.</h2>
<p class="mt-4 text-xl text-white/80">
Taskist offers a simple, powerful, and secure way to manage the flow of development work. Deploy it today.
</p>
<div class="mt-10">
<a href="https://github.com/taskist/taskist"
target="_blank"
class="bg-white text-core-primary font-bold px-12 py-4 rounded-xl shadow-xl hover:bg-gray-100 transition-all transform hover:scale-105">
Star on GitHub
</a>
</div>
</div>
</div>
</section>
</main>
<footer id="footer" class="bg-white border-t border-gray-200">
<div class="container mx-auto px-6 py-10">
<div class="flex flex-col md:flex-row justify-between items-center text-center md:text-left">
<div class="mb-4 md:mb-0">
<p class="text-gray-500 mt-1">
<img src="assets/images/logo.png" class="footer-logo" alt="Taskist" /> © 2025 Taskist Project. Open Source. MIT Licensed.
</p>
</div>
<div class="flex items-center space-x-6">
<a href="#features" class="text-gray-500 hover:text-core-primary">Features</a>
<a href="https://github.com/taskist/taskist" target="_blank" class="text-gray-500 hover:text-core-primary">Repository</a>
<a href="https://github.com/Taskist/taskist/issues/new" target="_blank" class="text-gray-500 hover:text-core-primary font-bold">Report an Issue</a>
</div>
</div>
</div>
</footer>
<script>
document.addEventListener("DOMContentLoaded", () => {
const mobileMenuButton = document.getElementById("mobile-menu-button");
const mobileMenu = document.getElementById("mobile-menu");
mobileMenuButton.addEventListener("click", () => {
mobileMenu.classList.toggle("hidden");
});
// Close menu when a link is clicked
const navLinks = mobileMenu.querySelectorAll("a");
navLinks.forEach((link) => {
link.addEventListener("click", () => {
mobileMenu.classList.add("hidden");
});
});
});
</script>
</body>
</html>