-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (84 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
93 lines (84 loc) · 2.98 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Forest Assistant</title>
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body class="min-h-screen flex flex-col">
<div id="titlebar" class="font-bold flex justify-between">
<span>🌲 Forest Assistant</span>
<div class="flex gap-2">
<img id="minimize-btn" src="img/min-button.png" alt="minimize" />
<img id="close-btn" src="img/close-button.png" alt="close" />
</div>
</div>
<main class="flex-1">
<div class="relative">
<!-- frog + clock here -->
<div class="absolute flex flex-col left-45 top-3">
<img id="frog" src="img/frog2.png" alt="frog" />
</div>
<div
id="speech-bubble"
class="absolute text-[#27130a] h-26 w-42 text-center"
>
<p id="clock">Hi! The current time is:</p>
</div>
</div>
<!-- quick links -->
<div class="flex flex-col mt-40 gap-2 w-[320px]">
<div id="quick-links-section"
class="text-center text-[#27130a]"
>
<h2 class="text-xl font-bold mt-1">Quick Links</h2>
<div
id="quick-links"
class="grid grid-cols-3 justify-items-center items-center"
>
<a id="notion" class="cursor-pointer"
><img src="img/book.png" alt="notion"
/></a>
<a id="rooster" class="cursor-pointer"
><img src="img/calendar.png" alt="rooster"
/></a>
<a href="ms-outlook:"><img src="img/letter.png" alt="outlook" /></a>
<a href="ms-teams:"><img src="img/teams.png" alt="teams" /></a>
<a href="spotify:"><img src="img/spotify.png" alt="spotify" /></a>
<a href="https://www.w3schools.com" target="_blank"
><img src="img/folder.png" alt="folder"
/></a>
</div>
</div>
<!-- weather -->
<div
id="weather-container"
class="text-center text-[#27130a] p-1 h-[140px] w-[320px]"
>
<h2 class="text-lg font-bold">Weather</h2>
<div class="grid grid-cols-2">
<div>
<label for="weather-apeldoorn" class="font-semibold"
>Apeldoorn</label
>
<p id="weather-apeldoorn" class="text-3xl">Loading...</p>
<p id="temp-apeldoorn">Loading weather...</p>
</div>
<div>
<label for="weather-utrecht" class="font-semibold"
>Utrecht</label
>
<p id="weather-utrecht" class="text-3xl">Loading...</p>
<p id="temp-utrecht">Loading weather...</p>
</div>
</div>
</div>
</div>
</main>
<footer class="text-center py-2">
<p>Small steps, big things</p>
</footer>
<script src="renderer.js"></script>
</body>
</html>