-
Notifications
You must be signed in to change notification settings - Fork 2
/
home.html
81 lines (69 loc) · 3.05 KB
/
home.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Screen</title>
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<a href="home.html" class="logo">TrackGuard</a>
<ul class="nav-links">
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="track.html">Track</a></li>
<li><a href="guard.html">Guard</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<main class="main-content">
<h1>Welcome to TrackGuard!</h1>
<p>Your one-stop solution for all your needs.</p>
<section class="device-section">
<h2>Connected Devices</h2>
<div class="device-container">
<div class="device-card">
<h3>Device ID: 1001</h3>
<p>Status: Connected</p>
</div>
<div class="device-card">
<h3>Device ID: 1002</h3>
<p>Status: Connected</p>
</div>
<div class="device-card">
<h3>Device ID: 1003</h3>
<p>Status: Disconnected</p>
</div>
<div class="device-card">
<h3>Device ID: 1004</h3>
<p>Status: Connected</p>
</div>
<div class="device-card">
<h3>Device ID: 1005</h3>
<p>Status: Maintenance Required</p>
</div>
<div class="device-card">
<h3>Device ID: 1006</h3>
<p>Status: Connected</p>
</div>
</div>
</section>
<button onclick="showAlert()">Explore Upcoming Features...</button>
</main>
<footer class="footer">
<div class="container">
<p>Connect with us on social media:</p>
<div class="social-links">
<a href="https://www.facebook.com/profile.php?id=61568228049473" target="_blank"><i class="fab fa-facebook-square"></i></a>
<a href="https://x.com/trackgaurd" target="_blank"><i class="fab fa-twitter-square"></i></a>
<a href="https://www.instagram.com/track_guard_ps/" target="_blank"><i class="fab fa-instagram-square"></i></a>
<a href="https://mail.google.com/mail/u/0/#inbox?compose=CllgCJvqKWjkwzVpPZMLjdlQjTlvhGPDnZdPvKFCsZWXdZnFVMgHlKxDlLmVnHXnDMKbZLlRrZL" target="trackgu"><i class="fas fa-envelope"></i></a>
</div>
<p>© 2024 TrackGuard. A
<script src="home.js"></script>
</body>
</html>