-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoolkit.html
More file actions
372 lines (336 loc) · 8.96 KB
/
Copy pathtoolkit.html
File metadata and controls
372 lines (336 loc) · 8.96 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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="format-detection" content="telephone=no">
<title>Design Toolkit - Vikram.Design</title>
<link rel="stylesheet" href="css/all.css" />
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Space Grotesk', sans-serif;
line-height: 1.6;
color: #333;
background: #fff;
margin: 0;
padding: 0;
}
#header {
padding: 2rem;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
}
.header-logo a {
font-size: 1.5rem;
font-weight: bold;
color: #333;
text-decoration: none;
}
.toolkit-container {
max-width: 1200px;
margin: 0 auto;
padding: 120px 2rem 4rem;
}
.toolkit-intro {
max-width: 800px;
margin: 0 auto 6rem;
text-align: center;
}
.toolkit-title {
font-size: 3rem;
font-weight: 300;
margin-bottom: 2rem;
letter-spacing: -0.02em;
}
.toolkit-subtitle {
font-size: 1.5rem;
font-weight: 300;
color: #666;
max-width: 600px;
margin: 0 auto;
}
.toolkit-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 4rem;
}
.toolkit-section {
opacity: 0;
transform: translateY(20px);
transition: all 0.8s ease;
}
.toolkit-section.visible {
opacity: 1;
transform: translateY(0);
}
.section-title {
font-size: 1.2rem;
font-weight: 500;
margin-bottom: 2rem;
position: relative;
}
.section-title::after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 40px;
height: 2px;
background: #333;
}
.toolkit-list {
list-style: none;
padding: 0;
margin: 0;
}
.toolkit-item {
margin-bottom: 2rem;
padding: 1.5rem;
background: #f9f9f9;
border-radius: 8px;
transition: transform 0.3s ease;
}
.toolkit-item:hover {
transform: translateY(-5px);
}
.item-title {
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 1rem;
}
.item-description {
font-size: 0.9rem;
color: #666;
margin-bottom: 1rem;
}
.item-tip {
font-size: 0.85rem;
color: #333;
background: #fff;
padding: 0.75rem;
border-radius: 4px;
border-left: 3px solid #333;
}
.notion-preview {
margin: 4rem auto;
max-width: 800px;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
overflow: hidden;
}
.preview-header {
padding: 1.5rem;
background: #f5f5f5;
border-bottom: 1px solid #eee;
}
.preview-content {
padding: 2rem;
}
.preview-image {
width: 100%;
height: auto;
border-radius: 8px;
}
.cta-section {
text-align: center;
margin-top: 6rem;
padding: 4rem 2rem;
background: #f9f9f9;
}
.cta-button {
display: inline-block;
padding: 1rem 2rem;
background: #333;
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: all 0.3s ease;
}
.cta-button:hover {
background: #000;
transform: translateY(-2px);
}
@media (max-width: 768px) {
.toolkit-title {
font-size: 2rem;
}
.toolkit-subtitle {
font-size: 1.2rem;
}
.toolkit-grid {
grid-template-columns: 1fr;
gap: 3rem;
}
}
</style>
</head>
<body>
<div id="wrapper">
<header id="header">
<span class="header-logo"><a href="index.html">Vikram Mishra</a></span>
<a href="#" class="menu_trigger">☰</a>
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="blog/index.html">Blog</a></li>
<li><a target="_blank" href="Vikram_Mishra_Resume.pdf">Download Resume</a></li>
</ul>
</nav>
</header>
<div class="toolkit-container">
<div class="toolkit-intro">
<h1 class="toolkit-title">Design Strategy Toolkit</h1>
<p class="toolkit-subtitle">
A systematic approach to product development that combines design thinking with agile methodologies
</p>
</div>
<div class="toolkit-grid">
<div class="toolkit-section">
<h2 class="section-title">Project Organization</h2>
<ul class="toolkit-list">
<li class="toolkit-item">
<div class="item-title">Notion Workspace Structure</div>
<div class="item-description">
A hierarchical system that keeps projects organized while maintaining flexibility for rapid iteration
</div>
<div class="item-tip">
Key Feature: Uses linked databases to create different views of the same information for various stakeholders
</div>
</li>
<li class="toolkit-item">
<div class="item-title">Custom Kanban System</div>
<div class="item-description">
Modified kanban board with integrated decision logs and resource allocation tracking
</div>
<div class="item-tip">
Key feature: Each card includes both design rationale and technical constraints
</div>
</li>
</ul>
</div>
<div class="toolkit-section">
<h2 class="section-title">Documentation Framework</h2>
<ul class="toolkit-list">
<li class="toolkit-item">
<div class="item-title">Design Decision Database</div>
<div class="item-description">
Structured documentation of key decisions, including context, alternatives considered, and outcome metrics
</div>
<div class="item-tip">
Insight: Link decisions to specific prototypes or test results for better traceability
</div>
</li>
<li class="toolkit-item">
<div class="item-title">Research Repository</div>
<div class="item-description">
Centralized collection of user research, market analysis, and technical feasibility studies
</div>
<div class="item-tip">
Method: Use tags to create dynamic collections based on project needs
</div>
</li>
</ul>
</div>
<div class="toolkit-section">
<h2 class="section-title">Collaboration Tools</h2>
<ul class="toolkit-list">
<li class="toolkit-item">
<div class="item-title">Feedback Loops</div>
<div class="item-description">
Structured system for collecting and incorporating stakeholder feedback throughout the design process
</div>
<div class="item-tip">
Innovation: Use embedded forms to standardize feedback collection
</div>
</li>
<li class="toolkit-item">
<div class="item-title">Resource Library</div>
<div class="item-description">
Shared repository of design assets, templates, and reference materials
</div>
<div class="item-tip">
Organization: Sort by project phase and type for quick access
</div>
</li>
</ul>
</div>
</div>
<!--<div class="notion-preview">
<div class="preview-header">
<h3>Project Dashboard Example</h3>
</div>
<div class="preview-content">
<img src="images/notion-preview.jpg" alt="Notion Dashboard Preview" class="preview-image">
</div>
</div>
<div class="cta-section">
<a href="https://vikrammishra.notion.site/Design-Strategy-Toolkit-Template-123" class="cta-button">
Get the Notion Template ↗
</a>
</div>-->
</div>
<footer id="footer">
<div class="footer-holder">
<div class="footer-frame">
<div class="footer-content">
<div class="col-holder">
<div class="col">
<div class="heading"></div>
</div>
<div class="col">
<div class="heading">
<h3>Contact</h3>
</div>
<address>
<p><strong>Vikram Mishra</strong></p>
<p>+1 (513) 815-1799</p>
<p><a href="mailto:vikram@zaptrack.us">vikram@zaptrack.us</a></p>
</address>
</div>
<div class="col col-contact">
<div class="heading">
<h3>Socials</h3>
</div>
<ul class="social">
<li class=""><a target="_blank" href="https://x.com/hypercosmac">Twitter</a></li>
<li class=""><a target="_blank" href="https://www.linkedin.com/in/vikram-mishra/">LinkedIn</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="holder">
<p>© <script>document.write(new Date().getFullYear())</script> VikramDesign</p>
</div>
</div>
</div>
</div>
</footer>
</div>
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
});
document.querySelectorAll('.toolkit-section').forEach(section => {
observer.observe(section);
});
</script>
<script src="header.js" defer></script>
</body>
</html>