-
Notifications
You must be signed in to change notification settings - Fork 144
/
index.html
61 lines (59 loc) · 2.14 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>To-Do List App</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navbar -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div
class="container mx-auto px-4 py-4 flex justify-between items-center"
>
<a href="#" class="text-2xl font-bold text-purple-600">To-Do List</a>
<ul class="flex space-x-4">
<!-- All of these buttons currently lead to error pages as their functionality will be added in the future
after login and authentication has been implemented.-->
<li>
<a href="error.html" class="hover:text-blue-600">Upcoming Tasks</a>
</li>
<li><a href="error.html" class="hover:text-blue-600">Friends</a></li>
<li>
<a href="imp.html" class="hover:text-blue-600">Why We need this?</a>
</li>
</ul>
</div>
</nav>
<!-- Main Block -->
<section
class="flex justify-center items-center h-screen bg-gradient-to-b from-purple-700 via-purple-500 to-pink-400"
>
<div class="container mx-auto px-4 text-center text-white">
<h1 class="text-4xl md:text-6xl font-bold">
Organize Your Life with this easy-to-use app
</h1>
<p class="mt-4 text-lg md:text-2xl">
Manage tasks effortlessly and boost your productivity. Stay on top of
everything with our intuitive To-Do List.
</p>
<a
href="Todo.html"
class="mt-8 inline-block bg-white text-indigo-600 font-bold py-3 px-6 rounded-lg shadow-lg hover:bg-gray-200"
>
Start
</a>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-6">
<div class="container mx-auto px-4 text-center">
<p>
© 2024 Made with ❤ by Ansh Grover. All rights reserved.
</p>
</div>
</footer>
</body>
</html>