-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlandingPage.html
More file actions
134 lines (128 loc) · 5.45 KB
/
landingPage.html
File metadata and controls
134 lines (128 loc) · 5.45 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard with Icons</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
<style>
body {
background-color: #fef6e4;
font-family: 'Arial', sans-serif;
}
.card {
border: none;
border-radius: 15px;
text-align: center;
color: white;
font-weight: bold;
}
.card:hover {
transform: scale(1.05);
transition: 0.3s;
}
.card-title {
font-size: 2rem;
color: #218063;
font-weight: bold;
}
.icon-container {
font-size: 3rem;
margin-bottom: 10px;
}
.bg-purple { background-color: #c9a7eb; }
.bg-orange { background-color: #f4a261; }
.bg-gold { background-color: #e9c46a; }
.bg-light-blue { background-color: #a8dadc; }
.bg-red { background-color: #e76f51; }
</style>
</head>
<body>
<div class="container mt-5">
<div class="row g-4">
<!-- Card 1 -->
<div class="col-md-4">
<a href="team-updates.html" class="text-decoration-none">
<div class="card bg-light-blue p-4 d-flex align-items-center">
<img src="https://picsum.photos/200?random=0" alt="Team Updates" class="me-3 rounded-circle">
<div>
<div class="icon-container"><i class="bi bi-people"></i></div>
<h5 class="card-title">Digital Twin Links</h5>
</div>
</div>
</a>
</div>
<!-- Card 2 -->
<div class="col-md-4">
<a href="employee-handbook.html" class="text-decoration-none">
<div class="card bg-purple p-4 d-flex align-items-center">
<img src="https://picsum.photos/200?random=1" alt="Employee Handbook" class="me-3 rounded-circle">
<div>
<div class="icon-container"><i class="bi bi-book"></i></div>
<h5 class="card-title">GIS API links</h5>
</div>
</div>
</a>
</div>
<!-- Card 3 -->
<div class="col-md-4">
<a href="project-reports.html" class="text-decoration-none">
<div class="card bg-gold p-4 d-flex align-items-center">
<img src="https://picsum.photos/200?random=2" alt="Project Reports" class="me-3 rounded-circle">
<div>
<div class="icon-container"><i class="bi bi-file-earmark-text"></i></div>
<h5 class="card-title">Project Reports</h5>
</div>
</div>
</a>
</div>
<!-- Card 4 -->
<div class="col-md-4">
<a href="hiring-hub.html" class="text-decoration-none">
<div class="card bg-orange p-4 d-flex align-items-center">
<img src="https://picsum.photos/200?random=3" alt="Hiring Hub" class="me-3 rounded-circle">
<div>
<div class="icon-container"><i class="bi bi-person-plus"></i></div>
<h5 class="card-title">Hiring Hub</h5>
</div>
</div>
</a>
</div>
<!-- Card 5 -->
<div class="col-md-4">
<a href="annual-report.html" class="text-decoration-none">
<div class="card bg-red p-4 d-flex align-items-center">
<img src="https://picsum.photos/200?random=4" alt="Annual Report" class="me-3 rounded-circle">
<div>
<div class="icon-container"><i class="bi bi-bar-chart"></i></div>
<h5 class="card-title">Annual Report</h5>
</div>
</div>
</a>
</div>
<!-- Card 6 -->
<div class="col-md-4">
<a href="new-services.html" class="text-decoration-none">
<div class="card bg-light-blue p-4 d-flex align-items-center">
<img src="https://picsum.photos/200?random=5" alt="New Services" class="me-3 rounded-circle">
<div>
<div class="icon-container"><i class="bi bi-lightbulb"></i></div>
<h5 class="card-title">New Services</h5>
</div>
</div>
</a>
</div>
</div>
</div>
<!-- Footer info -->
<footer class="bg-dark text-white text-center py-3 mt-5">
<p class="mb-0">© 2025 Test Page.</p>
<p class="mb-0">Images are randomly loaded from https://picsum.photos/</p>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>