-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
24 lines (24 loc) · 801 Bytes
/
popup.html
File metadata and controls
24 lines (24 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>TeamSync AI</title>
<style>
body { width: 300px; padding: 20px; font-family: 'Segoe UI', sans-serif; text-align: center; }
.logo { font-size: 40px; margin-bottom: 10px; }
h2 { color: #444791; margin: 0 0 10px 0; }
p { color: #666; font-size: 14px; margin-bottom: 20px; }
button {
background-color: #6264A7; color: white; border: none; padding: 10px 20px;
border-radius: 4px; cursor: pointer; width: 100%; font-size: 14px;
}
button:hover { background-color: #464775; }
</style>
</head>
<body>
<div class="logo">📅</div>
<h2>TeamSync AI</h2>
<p>Manage your settings and view detections in the dashboard.</p>
<button id="openDashboard">Open Dashboard</button>
<script src="popup.js"></script>
</body>
</html>