muranja commited on
Commit
104f444
·
verified ·
1 Parent(s): 8bdcead

create a landing page for the productivity app

Browse files
Files changed (2) hide show
  1. landing.html +329 -0
  2. productivity.html +2 -2
landing.html ADDED
@@ -0,0 +1,329 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Productivity App - Boost Your Efficiency</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
13
+ body {
14
+ font-family: 'Poppins', sans-serif;
15
+ scroll-behavior: smooth;
16
+ }
17
+ .hero-bg {
18
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
19
+ }
20
+ .feature-card {
21
+ transition: all 0.3s ease;
22
+ }
23
+ .feature-card:hover {
24
+ transform: translateY(-10px);
25
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
26
+ }
27
+ .testimonial-card {
28
+ transition: all 0.3s ease;
29
+ }
30
+ .testimonial-card:hover {
31
+ transform: scale(1.02);
32
+ }
33
+ .cta-section {
34
+ background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
35
+ }
36
+ .animated-text {
37
+ background: linear-gradient(to right, #667eea, #764ba2, #f093fb, #f5576c);
38
+ -webkit-background-clip: text;
39
+ -webkit-text-fill-color: transparent;
40
+ background-clip: text;
41
+ }
42
+ </style>
43
+ </head>
44
+ <body class="bg-gray-50">
45
+ <!-- Navigation -->
46
+ <nav class="bg-white shadow-sm fixed w-full z-10">
47
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
48
+ <div class="flex justify-between h-16">
49
+ <div class="flex items-center">
50
+ <div class="flex-shrink-0 flex items-center">
51
+ <i data-feather="target" class="h-8 w-8 text-indigo-600"></i>
52
+ <span class="ml-2 text-xl font-bold text-gray-900">ProductivityPro</span>
53
+ </div>
54
+ </div>
55
+ <div class="hidden md:flex items-center space-x-8">
56
+ <a href="#features" class="text-gray-600 hover:text-gray-900">Features</a>
57
+ <a href="#testimonials" class="text-gray-600 hover:text-gray-900">Testimonials</a>
58
+ <a href="#pricing" class="text-gray-600 hover:text-gray-900">Pricing</a>
59
+ <a href="productivity.html" class="text-gray-600 hover:text-gray-900">Dashboard</a>
60
+ </div>
61
+ <div class="flex items-center">
62
+ <a href="productivity.html" class="bg-indigo-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-indigo-700 transition">Get Started</a>
63
+ </div>
64
+ </div>
65
+ </div>
66
+ </nav>
67
+
68
+ <!-- Hero Section -->
69
+ <section class="hero-bg pt-24 pb-20">
70
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
71
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
72
+ <div>
73
+ <h1 class="text-4xl md:text-5xl font-bold text-white leading-tight">
74
+ Transform Your <span class="animated-text">Productivity</span> Today
75
+ </h1>
76
+ <p class="mt-6 text-xl text-gray-100 max-w-2xl">
77
+ The all-in-one solution to manage tasks, track time, and boost your efficiency. Join thousands of professionals who have revolutionized their workflow.
78
+ </p>
79
+ <div class="mt-8 flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
80
+ <a href="productivity.html" class="bg-white text-indigo-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition shadow-lg">
81
+ Start Free Trial
82
+ </a>
83
+ <a href="#features" class="border-2 border-white text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-white hover:text-indigo-600 transition">
84
+ Learn More
85
+ </a>
86
+ </div>
87
+ </div>
88
+ <div class="flex justify-center">
89
+ <img src="http://static.photos/technology/640x360/123" alt="Productivity Dashboard" class="rounded-xl shadow-2xl">
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </section>
94
+
95
+ <!-- Features Section -->
96
+ <section id="features" class="py-20 bg-white">
97
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
98
+ <div class="text-center">
99
+ <h2 class="text-3xl font-bold text-gray-900">Powerful Features</h2>
100
+ <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
101
+ Everything you need to stay organized, focused, and productive.
102
+ </p>
103
+ </div>
104
+
105
+ <div class="mt-16 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
106
+ <!-- Feature 1 -->
107
+ <div class="feature-card bg-gray-50 rounded-xl p-8">
108
+ <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center">
109
+ <i data-feather="clock" class="h-8 w-8 text-indigo-600"></i>
110
+ </div>
111
+ <h3 class="mt-6 text-xl font-semibold text-gray-900">Time Tracking</h3>
112
+ <p class="mt-4 text-gray-600">
113
+ Monitor how you spend your time with our intuitive timer and detailed analytics.
114
+ </p>
115
+ </div>
116
+
117
+ <!-- Feature 2 -->
118
+ <div class="feature-card bg-gray-50 rounded-xl p-8">
119
+ <div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center">
120
+ <i data-feather="check-circle" class="h-8 w-8 text-green-600"></i>
121
+ </div>
122
+ <h3 class="mt-6 text-xl font-semibold text-gray-900">Task Management</h3>
123
+ <p class="mt-4 text-gray-600">
124
+ Create, organize, and prioritize tasks with our powerful task management system.
125
+ </p>
126
+ </div>
127
+
128
+ <!-- Feature 3 -->
129
+ <div class="feature-card bg-gray-50 rounded-xl p-8">
130
+ <div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center">
131
+ <i data-feather="bar-chart-2" class="h-8 w-8 text-purple-600"></i>
132
+ </div>
133
+ <h3 class="mt-6 text-xl font-semibold text-gray-900">Analytics Dashboard</h3>
134
+ <p class="mt-4 text-gray-600">
135
+ Gain insights into your productivity patterns with comprehensive reports.
136
+ </p>
137
+ </div>
138
+
139
+ <!-- Feature 4 -->
140
+ <div class="feature-card bg-gray-50 rounded-xl p-8">
141
+ <div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center">
142
+ <i data-feather="calendar" class="h-8 w-8 text-yellow-600"></i>
143
+ </div>
144
+ <h3 class="mt-6 text-xl font-semibold text-gray-900">Daily Planning</h3>
145
+ <p class="mt-4 text-gray-600">
146
+ Plan your days effectively with our structured daily mission system.
147
+ </p>
148
+ </div>
149
+
150
+ <!-- Feature 5 -->
151
+ <div class="feature-card bg-gray-50 rounded-xl p-8">
152
+ <div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center">
153
+ <i data-feather="book-open" class="h-8 w-8 text-red-600"></i>
154
+ </div>
155
+ <h3 class="mt-6 text-xl font-semibold text-gray-900">Journal & Reflection</h3>
156
+ <p class="mt-4 text-gray-600">
157
+ Reflect on your progress and capture important insights with our journal feature.
158
+ </p>
159
+ </div>
160
+
161
+ <!-- Feature 6 -->
162
+ <div class="feature-card bg-gray-50 rounded-xl p-8">
163
+ <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center">
164
+ <i data-feather="smartphone" class="h-8 w-8 text-blue-600"></i>
165
+ </div>
166
+ <h3 class="mt-6 text-xl font-semibold text-gray-900">Cross-Platform Sync</h3>
167
+ <p class="mt-4 text-gray-600">
168
+ Access your data seamlessly across all your devices with real-time sync.
169
+ </p>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </section>
174
+
175
+ <!-- Testimonials Section -->
176
+ <section id="testimonials" class="py-20 bg-gray-50">
177
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
178
+ <div class="text-center">
179
+ <h2 class="text-3xl font-bold text-gray-900">What Our Users Say</h2>
180
+ <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
181
+ Join thousands of satisfied users who have transformed their productivity.
182
+ </p>
183
+ </div>
184
+
185
+ <div class="mt-16 grid grid-cols-1 md:grid-cols-3 gap-8">
186
+ <!-- Testimonial 1 -->
187
+ <div class="testimonial-card bg-white rounded-xl p-8 shadow-md">
188
+ <div class="flex items-center">
189
+ <img src="http://static.photos/people/320x240/1" alt="User" class="w-12 h-12 rounded-full">
190
+ <div class="ml-4">
191
+ <h4 class="font-semibold text-gray-900">Sarah Johnson</h4>
192
+ <p class="text-gray-600">Marketing Director</p>
193
+ </div>
194
+ </div>
195
+ <p class="mt-6 text-gray-600 italic">
196
+ "This app has completely changed how I manage my workday. My productivity has increased by 40% since I started using it."
197
+ </p>
198
+ <div class="mt-6 flex text-yellow-400">
199
+ <i class="fas fa-star"></i>
200
+ <i class="fas fa-star"></i>
201
+ <i class="fas fa-star"></i>
202
+ <i class="fas fa-star"></i>
203
+ <i class="fas fa-star"></i>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- Testimonial 2 -->
208
+ <div class="testimonial-card bg-white rounded-xl p-8 shadow-md">
209
+ <div class="flex items-center">
210
+ <img src="http://static.photos/people/320x240/2" alt="User" class="w-12 h-12 rounded-full">
211
+ <div class="ml-4">
212
+ <h4 class="font-semibold text-gray-900">Michael Chen</h4>
213
+ <p class="text-gray-600">Software Engineer</p>
214
+ </div>
215
+ </div>
216
+ <p class="mt-6 text-gray-600 italic">
217
+ "The time tracking feature alone is worth the price. I now have clear insights into where my time goes and how to optimize it."
218
+ </p>
219
+ <div class="mt-6 flex text-yellow-400">
220
+ <i class="fas fa-star"></i>
221
+ <i class="fas fa-star"></i>
222
+ <i class="fas fa-star"></i>
223
+ <i class="fas fa-star"></i>
224
+ <i class="fas fa-star"></i>
225
+ </div>
226
+ </div>
227
+
228
+ <!-- Testimonial 3 -->
229
+ <div class="testimonial-card bg-white rounded-xl p-8 shadow-md">
230
+ <div class="flex items-center">
231
+ <img src="http://static.photos/people/320x240/3" alt="User" class="w-12 h-12 rounded-full">
232
+ <div class="ml-4">
233
+ <h4 class="font-semibold text-gray-900">Emma Rodriguez</h4>
234
+ <p class="text-gray-600">Freelance Designer</p>
235
+ </div>
236
+ </div>
237
+ <p class="mt-6 text-gray-600 italic">
238
+ "As a freelancer, managing multiple projects was chaotic. This app helped me organize everything and bill clients accurately."
239
+ </p>
240
+ <div class="mt-6 flex text-yellow-400">
241
+ <i class="fas fa-star"></i>
242
+ <i class="fas fa-star"></i>
243
+ <i class="fas fa-star"></i>
244
+ <i class="fas fa-star"></i>
245
+ <i class="fas fa-star-half-alt"></i>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ </div>
250
+ </section>
251
+
252
+ <!-- CTA Section -->
253
+ <section class="cta-section py-20">
254
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
255
+ <h2 class="text-3xl md:text-4xl font-bold text-white">
256
+ Ready to Boost Your Productivity?
257
+ </h2>
258
+ <p class="mt-4 text-xl text-gray-100 max-w-3xl mx-auto">
259
+ Join thousands of professionals who have transformed their workflow with ProductivityPro.
260
+ </p>
261
+ <div class="mt-10">
262
+ <a href="productivity.html" class="bg-white text-indigo-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition shadow-lg inline-block">
263
+ Start Your Free Trial
264
+ </a>
265
+ <p class="mt-4 text-gray-200">No credit card required. 14-day free trial.</p>
266
+ </div>
267
+ </div>
268
+ </section>
269
+
270
+ <!-- Footer -->
271
+ <footer class="bg-gray-900 text-white py-12">
272
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
273
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
274
+ <div>
275
+ <div class="flex items-center">
276
+ <i data-feather="target" class="h-8 w-8 text-indigo-400"></i>
277
+ <span class="ml-2 text-xl font-bold">ProductivityPro</span>
278
+ </div>
279
+ <p class="mt-4 text-gray-400">
280
+ The ultimate productivity tool for professionals who want to achieve more.
281
+ </p>
282
+ </div>
283
+ <div>
284
+ <h3 class="text-lg font-semibold">Product</h3>
285
+ <ul class="mt-4 space-y-2">
286
+ <li><a href="#features" class="text-gray-400 hover:text-white">Features</a></li>
287
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
288
+ <li><a href="#" class="text-gray-400 hover:text-white">Integrations</a></li>
289
+ </ul>
290
+ </div>
291
+ <div>
292
+ <h3 class="text-lg font-semibold">Resources</h3>
293
+ <ul class="mt-4 space-y-2">
294
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
295
+ <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
296
+ <li><a href="#" class="text-gray-400 hover:text-white">Support</a></li>
297
+ </ul>
298
+ </div>
299
+ <div>
300
+ <h3 class="text-lg font-semibold">Company</h3>
301
+ <ul class="mt-4 space-y-2">
302
+ <li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
303
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
304
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
305
+ </ul>
306
+ </div>
307
+ </div>
308
+ <div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-400">
309
+ <p>&copy; 2023 ProductivityPro. All rights reserved.</p>
310
+ </div>
311
+ </div>
312
+ </footer>
313
+
314
+ <script>
315
+ // Feather icons initialization
316
+ feather.replace();
317
+
318
+ // Smooth scrolling for anchor links
319
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
320
+ anchor.addEventListener('click', function (e) {
321
+ e.preventDefault();
322
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
323
+ behavior: 'smooth'
324
+ });
325
+ });
326
+ });
327
+ </script>
328
+ </body>
329
+ </html>
productivity.html CHANGED
@@ -29,8 +29,8 @@
29
  <h1 class="text-3xl font-bold text-gray-800">Productivity Tracker</h1>
30
  <nav>
31
  <ul class="flex space-x-6">
32
- <li><a href="index.html" class="text-gray-600 hover:text-gray-900">Home</a></li>
33
- </ul>
34
  </nav>
35
  </header>
36
 
 
29
  <h1 class="text-3xl font-bold text-gray-800">Productivity Tracker</h1>
30
  <nav>
31
  <ul class="flex space-x-6">
32
+ <li><a href="landing.html" class="text-gray-600 hover:text-gray-900">Home</a></li>
33
+ </ul>
34
  </nav>
35
  </header>
36