-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwbs.html
More file actions
307 lines (282 loc) · 20.7 KB
/
wbs.html
File metadata and controls
307 lines (282 loc) · 20.7 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
300
301
302
303
304
305
306
307
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHiram WBS Chart</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght=300;400;500;600;700;800&display=swap');
body {
font-family: 'Plus Jakarta Sans', sans-serif;
}
/* Custom scrollbar for webkit */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Connector lines for organizational/WBS tree */
.tree-line-vertical {
width: 2px;
background-color: #cbd5e1;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.tree-line-horizontal {
height: 2px;
background-color: #cbd5e1;
position: absolute;
top: 0;
}
</style>
</head>
<body class="bg-slate-50 text-slate-800 min-h-screen flex flex-col justify-between">
<header class="bg-white border-b border-slate-200 sticky top-0 z-30 px-6 py-4 shadow-sm">
<div class="max-w-7xl mx-auto flex flex-col md:flex-row md:items-center md:justify-between gap-4">
<div>
<div class="flex items-center gap-2">
<span class="bg-indigo-100 text-indigo-700 px-3 py-1 rounded-full text-xs font-bold tracking-wide uppercase">IT124P Project Management</span>
<span class="text-slate-400 text-xs">|</span>
<span class="text-slate-500 text-xs font-semibold">College of Computer and Information Science</span>
</div>
<h1 class="text-2xl font-extrabold text-slate-900 mt-1 flex items-center gap-2">
<i data-lucide="sitemap" class="text-indigo-600"></i> PHiram Work Breakdown Structure (WBS)
</h1>
<p class="text-slate-500 text-sm mt-0.5">Fixed lifecycle hierarchy: Concentrated multi-tier testing loops under Dev Assembly, linear deployment steps, and active retrospectives.</p>
</div>
<div class="flex items-center gap-2 bg-slate-100 px-3 py-1.5 rounded-lg text-xs font-semibold text-slate-600">
<i data-lucide="git-commit" class="w-3.5 h-3.5 text-indigo-600"></i> Refined 5-Phase Hierarchy
</div>
</div>
</header>
<main class="flex-1 max-w-[1600px] w-full mx-auto p-4 md:p-6 flex flex-col">
<section class="flex flex-col bg-white border border-slate-200 rounded-2xl p-6 shadow-sm overflow-x-auto">
<div class="min-w-[1550px] flex flex-col items-center py-6 relative">
<div class="relative pb-12 z-10">
<div id="node-1.0" class="wbs-node bg-slate-900 text-white px-10 py-5 rounded-2xl shadow-xl border-4 border-double border-slate-700 text-center w-72">
<div class="text-[10px] uppercase tracking-widest text-indigo-400 font-extrabold">PHiram</div>
<div class="font-extrabold text-base mt-1">Work Breakdown Structure</div>
</div>
<div class="tree-line-vertical h-12 bottom-0"></div>
</div>
<div class="relative w-full flex justify-between px-2 pb-12">
<div class="tree-line-horizontal" style="left: 10%; right: 10%;"></div>
<div class="w-1/5 flex flex-col items-center relative">
<div class="tree-line-vertical h-6 top-0"></div>
<div id="node-1.1" class="mt-6 wbs-node bg-blue-50 border border-blue-400 text-blue-900 p-3.5 rounded-xl shadow-sm text-center w-48">
<div class="text-[9px] font-extrabold uppercase text-blue-500 tracking-wider">Phase 1</div>
<div class="font-bold text-xs mt-0.5">1.1 Project Planning</div>
</div>
</div>
<div class="w-1/5 flex flex-col items-center relative">
<div class="tree-line-vertical h-6 top-0"></div>
<div id="node-1.2" class="mt-6 wbs-node bg-indigo-50 border border-indigo-400 text-indigo-900 p-3.5 rounded-xl shadow-sm text-center w-48">
<div class="text-[9px] font-extrabold uppercase text-indigo-500 tracking-wider">Phase 2</div>
<div class="font-bold text-xs mt-0.5">1.2 Dev Planning</div>
</div>
</div>
<div class="w-1/5 flex flex-col items-center relative">
<div class="tree-line-vertical h-6 top-0"></div>
<div id="node-1.3" class="mt-6 wbs-node bg-pink-50 border border-pink-400 text-pink-900 p-3.5 rounded-xl shadow-sm text-center w-48">
<div class="text-[9px] font-extrabold uppercase text-pink-500 tracking-wider">Phase 3</div>
<div class="font-bold text-xs mt-0.5">1.3 Modular Construction</div>
</div>
</div>
<div class="w-1/5 flex flex-col items-center relative">
<div class="tree-line-vertical h-6 top-0"></div>
<div id="node-1.4" class="mt-6 wbs-node bg-emerald-50 border border-emerald-400 text-emerald-900 p-3.5 rounded-xl shadow-sm text-center w-48">
<div class="text-[9px] font-extrabold uppercase text-emerald-500 tracking-wider">Phase 4</div>
<div class="font-bold text-xs mt-0.5">1.4 Deployment & Maint.</div>
</div>
</div>
<div class="w-1/5 flex flex-col items-center relative">
<div class="tree-line-vertical h-6 top-0"></div>
<div id="node-1.5" class="mt-6 wbs-node bg-rose-50 border border-rose-400 text-rose-900 p-3.5 rounded-xl shadow-sm text-center w-48">
<div class="text-[9px] font-extrabold uppercase text-rose-500 tracking-wider">Phase 5</div>
<div class="font-bold text-xs mt-0.5">1.5 Retrospective & Closing</div>
</div>
</div>
</div>
<div class="w-full flex justify-between px-2">
<div class="w-1/5 flex flex-col items-center relative border-r border-dashed border-slate-200">
<div class="absolute -top-12 left-[110px] w-0.5 h-12 bg-slate-300"></div>
<div class="absolute top-0 left-[24px] w-[86px] h-0.5 bg-slate-300"></div>
<div class="flex flex-col w-48">
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 bottom-0 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-white border border-slate-200 p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-blue-500">1.1.1</div>
<div class="text-[10px] font-semibold text-slate-800">System Spec</div>
</div>
</div>
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 bottom-0 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-white border border-slate-200 p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-blue-500">1.1.2</div>
<div class="text-[10px] font-semibold text-slate-800">Project Charter</div>
</div>
</div>
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 h-1/2 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-blue-900 border border-slate-800 text-white p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-blue-400">1.1.3</div>
<div class="text-[10px] font-bold">Requirement Analysis</div>
</div>
<div class="ml-[52px] mt-1 border-l border-blue-300 pl-2 flex flex-col gap-1.5">
<div class="text-[9px] text-slate-600 font-medium bg-slate-100 px-1.5 py-0.5 rounded">1.1.3.1 Data Specs</div>
<div class="text-[9px] text-slate-600 font-medium bg-slate-100 px-1.5 py-0.5 rounded">1.1.3.2 Environment Setup</div>
</div>
</div>
</div>
</div>
<div class="w-1/5 flex flex-col items-center relative border-r border-dashed border-slate-200">
<div class="absolute -top-12 left-[110px] w-0.5 h-12 bg-slate-300"></div>
<div class="absolute top-0 left-[24px] w-[86px] h-0.5 bg-slate-300"></div>
<div class="flex flex-col w-48">
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 bottom-0 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-indigo-900 text-white p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-indigo-300">1.2.1</div>
<div class="text-[10px] font-bold">Identifying Modules</div>
</div>
<div class="ml-[52px] mt-1 border-l border-indigo-300 pl-2 flex flex-col gap-1.5">
<div class="text-[9px] text-slate-600 font-medium bg-slate-100 px-1.5 py-0.5 rounded">1.2.1.1 User Module</div>
<div class="text-[9px] text-slate-600 font-medium bg-slate-100 px-1.5 py-0.5 rounded">1.2.1.2 Seller Module</div>
<div class="text-[9px] text-slate-600 font-medium bg-slate-100 px-1.5 py-0.5 rounded">1.2.1.3 Payment Modules</div>
</div>
</div>
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 bottom-0 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-white border border-slate-200 p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-indigo-500">1.2.2</div>
<div class="text-[10px] font-semibold text-slate-800">Sketches & Mockups</div>
</div>
</div>
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 h-1/2 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-indigo-900 text-white p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-indigo-300">1.2.3</div>
<div class="text-[10px] font-bold">Task Delegation</div>
</div>
<div class="ml-[52px] mt-1 border-l border-indigo-300 pl-2 flex flex-col gap-1.5">
<div class="text-[9px] text-slate-600 font-medium bg-slate-100 px-1.5 py-0.5 rounded">1.2.3.1 Responsibility Matrix</div>
</div>
</div>
</div>
</div>
<div class="w-1/5 flex flex-col items-center relative border-r border-dashed border-slate-200">
<div class="absolute -top-12 left-[110px] w-0.5 h-12 bg-slate-300"></div>
<div class="absolute top-0 left-[24px] w-[86px] h-0.5 bg-slate-300"></div>
<div class="flex flex-col w-48">
<div class="relative flex items-center py-2 w-48">
<div class="absolute left-[24px] top-0 bottom-0 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-white border border-slate-200 p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-pink-500">1.3.1</div>
<div class="text-[10px] font-semibold text-slate-800">Frontend Dev</div>
</div>
</div>
<div class="relative flex items-center py-2 w-48">
<div class="absolute left-[24px] top-0 bottom-0 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-white border border-slate-200 p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-pink-500">1.3.2</div>
<div class="text-[10px] font-semibold text-slate-800">Backend & DB Dev</div>
</div>
</div>
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 h-1/2 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-pink-900 text-white p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-pink-300">1.3.3</div>
<div class="text-[10px] font-bold">Regression Testing</div>
</div>
<div class="ml-[52px] mt-1 border-l-2 border-pink-500 pl-2 flex flex-col gap-1">
<div class="text-[9px] text-pink-700 font-medium bg-pink-50 px-1.5 py-0.5 border border-pink-100 rounded">1.3.3.1 Regression Testing</div>
<div class="text-[9px] text-indigo-700 font-medium bg-indigo-50 px-1.5 py-0.5 border border-indigo-100 rounded">1.3.3.2 Performance Testing</div>
<div class="text-[9px] text-amber-700 font-medium bg-amber-50 px-1.5 py-0.5 border border-amber-100 rounded">1.3.3.3 Usability Testing</div>
<div class="text-[9px] text-rose-700 font-medium bg-rose-50 px-1.5 py-0.5 border border-rose-100 rounded">1.3.3.4 Debugging</div>
</div>
</div>
</div>
</div>
<div class="w-1/5 flex flex-col items-center relative border-r border-dashed border-slate-200">
<div class="absolute -top-12 left-[110px] w-0.5 h-12 bg-slate-300"></div>
<div class="absolute top-0 left-[24px] w-[86px] h-0.5 bg-slate-300"></div>
<div class="flex flex-col w-48">
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 bottom-0 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-emerald-900 text-white p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-emerald-300">1.4.1</div>
<div class="text-[10px] font-bold">Deployment</div>
</div>
<div class="ml-[52px] mt-1 border-l border-emerald-300 pl-2 flex flex-col gap-1.5">
<div class="text-[9px] text-slate-600 font-medium bg-slate-100 px-1.5 py-0.5 rounded">1.4.1.1 Launching</div>
</div>
</div>
<div class="relative flex flex-col py-2 w-48">
<div class="absolute left-[24px] top-0 h-1/2 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-white border border-emerald-400 p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-emerald-600">1.4.2</div>
<div class="text-[10px] font-semibold text-slate-800">Maintenance</div>
</div>
<div class="ml-[52px] mt-1 border-l border-emerald-300 pl-2 flex flex-col gap-1.5">
<div class="text-[9px] text-slate-600 font-medium bg-slate-100 px-1.5 py-0.5 rounded">1.4.2.1 Bug Monitoring & Patching</div>
</div>
</div>
</div>
</div>
<div class="w-1/5 flex flex-col items-center relative">
<div class="absolute -top-12 left-[110px] w-0.5 h-12 bg-slate-300"></div>
<div class="absolute top-0 left-[24px] w-[86px] h-0.5 bg-slate-300"></div>
<div class="flex flex-col w-48">
<div class="relative flex items-center py-2 w-48">
<div class="absolute left-[24px] top-0 h-1/2 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-white border border-rose-400 p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-rose-500">1.5.1</div>
<div class="text-[10px] font-semibold text-slate-800">Post-Project Evaluation</div>
</div>
</div>
<div class="relative flex items-center py-2 w-48">
<div class="absolute left-[24px] top-0 h-1/2 w-0.5 bg-slate-300"></div>
<div class="absolute left-[24px] w-[12px] h-0.5 bg-slate-300"></div>
<div class="bg-white border border-rose-400 p-2 rounded-lg w-[152px] ml-[36px] shadow-sm z-10">
<div class="text-[8px] font-bold text-rose-500">1.5.2</div>
<div class="text-[10px] font-semibold text-slate-800">Project Sign-Off</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-white border-t border-slate-200 py-3 text-center text-xs text-slate-400">
© 2026 PHiram Project Development Tree
</footer>
<script>
lucide.createIcons();
</script>
</body>
</html>