-
Notifications
You must be signed in to change notification settings - Fork 0
/
memes.html
279 lines (270 loc) · 10.6 KB
/
memes.html
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
<html>
<head>
<script src="https://cdn.tailwindcss.com"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script
type="module"
src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/4.0.379/pdf.min.mjs"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
</head>
<body class="bg-gray-800 text-white">
<nav class="bg-gray-900 shadow">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between">
<div class="flex space-x-7">
<!-- Logo -->
<div>
<a href="#" class="flex items-center py-4 px-2">
<span class="font-semibold text-gray-500 text-lg"
>Timebox Planner</span
>
</a>
</div>
<!-- Primary Navbar items -->
<div class="hidden md:flex items-center space-x-1">
<!-- <div class="md:flex items-center space-x-1"> -->
<a
href="index.html"
class="py-4 px-2 text-gray-300 font-semibold hover:text-green-400 transition duration-300"
>Home</a
>
<!-- <a -->
<!-- href="download.html" -->
<!-- class="py-4 px-2 text-gray-300 font-semibold hover:text-green-400 transition duration-300" -->
<!-- >Download</a -->
<!-- > -->
<a
href="generate.html"
class="py-4 px-2 text-gray-300 font-semibold hover:text-green-400 transition duration-300"
>Generate</a
>
</div>
</div>
<!-- Secondary Navbar items -->
<div class="hidden md:flex items-center space-x-3">
<a
href="memes.html"
class="py-2 px-2 font-medium text-white bg-green-500 rounded hover:bg-green-400 transition duration-300"
>Memes</a
>
</div>
<!-- Mobile menu button -->
<div class="md:hidden flex items-center">
<button class="outline-none mobile-menu-button">
<svg
class="w-6 h-6 text-gray-300 hover:text-green-400"
x-show="!showMenu"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden mobile-menu">
<ul class="">
<li>
<a
href="index.html"
class="block text-sm px-2 py-4 text-gray-300 hover:bg-green-500 transition duration-300"
>Home</a
>
</li>
<!-- <li> -->
<!-- <a -->
<!-- href="download.html" -->
<!-- class="block text-sm px-2 py-4 text-gray-300 hover:bg-green-500 transition duration-300" -->
<!-- >Download</a -->
<!-- > -->
<!-- </li> -->
<li>
<a
href="generate.html"
class="block text-sm px-2 py-4 text-gray-300 hover:bg-green-500 transition duration-300"
>Generate</a
>
</li>
<li>
<a
href="memes.html"
class="block text-sm px-2 py-4 text-gray-300 hover:bg-green-500 bg-gray-700 transition duration-300"
>Memes</a
>
</li>
</ul>
</div>
</nav>
<main>
<div
class="relative pt-16 pb-32 flex content-center items-center justify-center"
style="min-height: 75vh"
>
<div
class="absolute top-0 w-full h-full bg-center bg-cover"
style="
background-image: url(timebox-fight.png);
"
>
<span
id="blackOverlay"
class="w-full h-full absolute opacity-75 bg-black"
></span>
</div>
<div class="container relative mx-auto">
<div class="items-center flex flex-wrap">
<div class="w-full lg:w-6/12 px-4 ml-auto mr-auto text-center">
<h1 class="text-white font-semibold text-5xl">
Timebox: A Symphony of Productivity and Joy
</h1>
<p class="mt-4 text-lg text-blueGray-200">
Timeboxing shines as a beacon of modern time management. It
transforms the way we plan our day, week, and month, turning
them into a canvas of organized blocks, each representing a
specific task or activity
</p>
</div>
</div>
</div>
</div>
<section class="py-12 px-6">
<div class="max-w-4xl mx-auto space-y-8">
<p class="text-lg leading-relaxed">
Timeboxing, as recently highlighted in a study of 100 productivity
hacks, shines as a beacon of modern time management. It transforms
the way we plan our day, week, and month, turning them into a canvas
of organized blocks, each representing a specific task or
activity. Here's an updated and joyful description of how timeboxing
can revolutionize your approach to time management:
</p>
<div>
<h2 class="text-2xl text-green-400 font-bold mb-2">
Daily Delight with Timeboxing
</h2>
<ul class="list-disc list-inside space-y-2">
<li>
Controlled Sunrise: Begin each day with the power of choice.
Decide what tasks will fill your day and dedicate specific time
blocks to them, ensuring a blend of important and urgent
activities.
</li>
<li>
Distraction-Free Zones: Each timebox is a mini-oasis of focus.
During these periods, you're in control, free from distractions,
diligently working towards your goals.
</li>
<li>
Sense of Achievement: Completing each timebox is like collecting
a star in your daily journey, bringing a sense of accomplishment
and progress.
</li>
</ul>
</div>
<div>
<h2 class="text-2xl text-green-400 font-bold mb-2">
Weekly Wonders with Timeboxing
</h2>
<ul class="list-disc list-inside space-y-2">
<li>
Strategic Placement of Tasks: Understanding the interplay of
weekly tasks allows for optimal scheduling. It's like a game of
strategic placement, ensuring the right tasks are tackled at the
right time for maximum efficiency.
</li>
<li>
Collaborative Harmony: Share your timeboxed calendar with
colleagues, harmonizing your schedule with theirs. This fosters
a collaborative environment, enhancing team productivity and
understanding.
</li>
<li>
Reflective Record: Your calendar becomes a tapestry of
the week's activities, offering a clear view of accomplishments
and areas for growth.
</li>
</ul>
</div>
<div>
<h2 class="text-2xl text-green-400 font-bold mb-2">
Monthly Mastery with Timeboxing
</h2>
<ul class="list-disc list-inside space-y-2">
<li>
Big Picture Planning: Timeboxing on a monthly scale allows for a
birds-eye view of your goals and progress. It's like
constructing a roadmap to success, one timebox at a time.
</li>
<li>
Control and Happiness: Embrace the control timeboxing gives over
your month, a key driver in workplace happiness. This method
ensures that your time aligns with your priorities, fostering a
sense of autonomy and satisfaction.
</li>
<li>
Doubling Productivity: Break free from Parkinson's law, which
suggests work expands to fill the time available. Timeboxing
imposes disciplined, finite periods for tasks, potentially
doubling your productivity.
</li>
</ul>
</div>
<div>
<h2 class="text-2xl text-green-400 font-bold mb-2">
Timeboxing: A Symphony of Productivity and Joy
</h2>
<ul class="list-disc list-inside space-y-2">
<li>
Visual and Intuitive: Timeboxing isn't just a method; it's a
visual and intuitive approach to managing time. It's like
painting your day, week, and month with purposeful strokes.
</li>
<li>
Personal and Professional Growth: This method is a key skill for
modern professionals. It's not just about doing more; it's about
achieving more, both personally and in teams.
</li>
<li>
Zero Cost, Infinite Value: Implementing timeboxing costs nothing
but can yield immeasurable returns in terms of control,
productivity, and satisfaction.
</li>
</ul>
</div>
<div class="flex justify-center mt-8">
<a
href="generate.html"
class="py-2 px-2 font-big text-white bg-green-500 rounded hover:bg-green-400"
>Generate PDFs</a
>
</div>
<!-- Placeholder for images -->
<!-- <div class="flex justify-center mt-8"> -->
<!-- <img -->
<!-- src="https://via.placeholder.com/400" -->
<!-- alt="Timebox Image" -->
<!-- class="rounded-lg" -->
<!-- /> -->
<!-- </div> -->
<!-- </div> -->
</section>
</main>
<script type="module">
const btn = document.querySelector("button.mobile-menu-button");
const menu = document.querySelector(".mobile-menu");
btn.addEventListener("click", () => {
menu.classList.toggle("hidden");
});
</script>
</body>
</html>