-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DataNotes</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="js/app.js" type="module" defer></script>
</head>
<body class="bg-gray-100">
<div class="container mx-auto p-4">
<h1 class="text-3xl font-bold mb-4">DataNotes</h1>
<div id="upload-form" class="mb-4">
<!-- Upload form will be inserted here -->
</div>
<div id="dashboard" class="flex">
<div id="not-sorted" class="w-1/4 bg-white p-4 rounded shadow">
<h2 class="text-xl font-semibold mb-2">Not Sorted</h2>
<!-- Unsorted sticky notes will be inserted here -->
</div>
<div id="groups-container" class="w-3/4 ml-4 bg-white p-4 rounded shadow">
<h2 class="text-xl font-semibold mb-2">Groups</h2>
<!-- Grouped sticky notes will be inserted here -->
</div>
</div>
</div>
</body>
</html>