-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
323 lines (317 loc) · 16.5 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Tools</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Orbitron', sans-serif;
margin: 0;
padding: 0;
background: #1a1a1a; /* Dark background */
color: #e0e0e0; /* Light text color for contrast */
}
header {
background: linear-gradient(45deg, #2e2e2e, #383838); /* Sleek dark gradient */
color: white;
padding: 1rem 2rem;
position: sticky;
top: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
h1 {
font-size: 2rem;
color: #fff;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
nav {
display: flex;
gap: 1.5rem;
}
nav .dropdown {
position: relative;
}
nav .dropdown > a {
color: white;
text-decoration: none;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
font-size: 1.1rem;
letter-spacing: 1px;
transition: color 0.3s ease;
}
nav .dropdown-content {
display: none;
position: absolute;
background: rgba(0, 0, 0, 0.8);
padding: 0.5rem 0;
border-radius: 5px;
top: 100%;
left: 0;
min-width: 150px;
z-index: 1001;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
nav .dropdown-content a {
display: block;
padding: 0.5rem 1rem;
color: #00bcd4; /* Cyan for cool accent */
text-decoration: none;
font-weight: normal;
font-size: 1rem;
transition: background 0.3s, color 0.3s;
}
nav .dropdown-content a:hover {
background: #00bcd4;
color: black; /* Inverted colors for hover */
}
nav .dropdown:hover .dropdown-content {
display: block;
}
main {
padding: 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.tool {
border-radius: 10px;
background: rgba(0, 0, 0, 0.5); /* Dark transparent background */
backdrop-filter: blur(15px);
padding: 1.5rem;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
transition: transform 0.3s, box-shadow 0.3s;
}
.tool:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(0, 188, 212, 0.7); /* Cyan glow on hover */
}
.tool h2 {
margin: 0;
font-size: 1.8rem;
color: #00bcd4; /* Cyan for cool effect */
text-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}
.tool p {
margin: 0.5rem 0 0;
line-height: 1.5;
color: #b3b3b3; /* Light grey text */
}
footer {
background: linear-gradient(45deg, #2e2e2e, #383838); /* Same dark gradient as header */
color: white;
text-align: center;
padding: 1.5rem;
position: fixed;
bottom: 0;
width: 100%;
box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.6);
}
footer p {
font-size: 1rem;
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .7);
z-index: 1001
}
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, .8);
color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, .6);
z-index: 1002;
text-align: center
}
.popup button {
margin-top: 10px;
padding: 10px 20px;
background: #00bcd4;
color: #000;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 700;
transition: background .3s
}
.popup button:hover {
background: #007c8b
}
.popup a {
color: #00bcd4;
text-decoration: none;
font-weight: 700;
display: inline-block;
margin-top: 15px
}
.popup a:hover {
color: #007c8b
}
</style>
</head>
<body>
<header>
<h1>QB User Tools</h1>
<nav>
<div class="dropdown">
<a href="#">Floor Information</a>
<div class="dropdown-content">
<a href="https://prod-na.manage.robotics.amazon.dev" target="_blank">Optic Manager</a>
<a href="https://na.prod.command-center.robotics.amazon.dev/SAT1/mod/A" target="_blank">QBCC</a>
<a href="https://atlas-kibana.corp.amazon.com/app/kibana#/dashboard/4d1cf850-4517-11ea-9a86-43221f1fe5b0?_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:'2025-01-15T00:00:00.000Z',mode:absolute,to:'2025-01-15T10:30:00.000Z'))&_a=(description:'SAT1%20Amnesty%20Dashboard%20Created%2002%2F2020',filters:!(('$state':(store:appState),meta:(alias:!n,disabled:!f,index:'216dae00-3af7-11e9-96e0-8d1f738315f8',key:warehouse_id,negate:!f,params:(query:SAT1,type:phrase),type:phrase,value:SAT1),query:(match:(warehouse_id:(query:SAT1,type:phrase))))),fullScreenMode:!f,options:(darkTheme:!t,hidePanelTitles:!f,useMargins:!t),panels:!((embeddableConfig:(vis:(colors:(Count:%23806EB7),legendOpen:!t)),gridData:(h:9,i:'1',w:36,x:0,y:0),id:c956c970-4502-11e9-86f1-a72adc4935ed,panelIndex:'1',type:visualization,version:'6.3.0'),(embeddableConfig:(vis:(colors:(Quantity:%23447EBC),legendOpen:!t)),gridData:(h:15,i:'3',w:16,x:0,y:24),id:'155ee5f0-4503-11e9-86f1-a72adc4935ed',panelIndex:'3',title:'ICQA%20APMT%20By%20User%20(Top%2010)',type:visualization,version:'6.3.0'),(embeddableConfig:(vis:(colors:(Quantity:%23447EBC),legendOpen:!t)),gridData:(h:15,i:'4',w:16,x:32,y:24),id:'1ba530e0-4503-11e9-a572-c3a1576aa62f',panelIndex:'4',title:'ICQA%20APMT%20By%20Manager%20(Top%2010)',type:visualization,version:'6.3.0'),(embeddableConfig:(spy:!n,vis:(colors:(P-0-B:%23AEA2E0,P-1-A:%23BADFF4,P-1-B:%23DEDAF7,P-1-F:%23B7DBAB,P-6-A:%239AC48A,P-7-A:%23806EB7,P-8-A:%23E0F9D7,paKivaA01:%23447EBC,paKivaA01G:%23447EBC,paKivaA02:%23806EB7,paKivaA03:%239AC48A,paKivaA04:%2382B5D8,paKivaB03:%2370DBED))),gridData:(h:15,i:'5',w:16,x:0,y:9),id:fb1354b0-4502-11e9-86f1-a72adc4935ed,panelIndex:'5',title:'ICQA%20APMT%20By%20Pick%20Area',type:visualization,version:'6.3.0'),(embeddableConfig:(vis:(colors:(Quantity:%239AC48A),legendOpen:!t)),gridData:(h:15,i:'7',w:16,x:16,y:9),id:'2c125c50-4503-11e9-8a46-bbf85c8a8a5d',panelIndex:'7',title:'ICQA%20APMT%20By%20Bin%20(Top%2010)',type:visualization,version:'6.3.0'),(embeddableConfig:(vis:(colors:(Quantity:%239AC48A),legendOpen:!t)),gridData:(h:15,i:'8',w:16,x:32,y:9),id:'23e4b3c0-4503-11e9-8a46-bbf85c8a8a5d" target="_blank">SAT1 Amnesty Dashboard - Kibana</a>
<a href="https://vantage.amazon.com/app/flash-dashboards/site-overview?customer=AMZN&warehouse=SAT1®ion=us-east-1&zones=paKivaA01%2CpaKivaA02" target="_blank">Vantage Site Overview</a>
<a href="https://vantage.amazon.com/app/fulfillment-dashboards/floor-issue-overview?customer=AMZN&warehouse=SAT1®ion=us-east-1&zones=paKivaA01%2CpaKivaA02" target="_blank">Vantage Floor Issue Overview</a>
<a href="https://roboscout-dub.corp.amazon.com/analyze/19899/?datasource_current_day=false&datasource_endDateTime=2025-01-11%2012:00:00&datasource_startDateTime=2025-01-11%2000:00:00&datasource_viz=nvd3Table&mom_ids=465%2C461&ofm_ids=&osm_ids=40&oxm_ids=285&sites=(SAT1-paKivaA01)(SAT1-paKivaA02)" target="_blank">Avg Responce Time</a>
</div>
</div>
<div class="dropdown">
<a href="#">Building Information</a>
<div class="dropdown-content">
<a href="https://sera-na.amazon.com/SAT1?shiftId=895a8060-a5b3-421d-bcf9-7aaaf62202d7" target="_blank">Sera</a>
<a href="https://rodeo-iad.amazon.com/SAT1/ExSD?yAxis=PROCESS_PATH&zAxis=WORK_POOL&shipmentTypes=CUSTOMER_SHIPMENTS&_shipmentTypes=on&exSDRange.quickRange=NEXT_3_DAYS&exSDRange.dailyStart=00%3A00&exSDRange.dailyEnd=00%3A00&giftOption=ALL&fulfillmentServiceClass=ALL&fracs=NON_FRACS&workPool=ReadyToPick&workPool=PickingNotYetPicked&workPool=CrossdockNotYetPicked&_workPool=on&workPool=PickingPicked&workPool=Inducted&workPool=RebinBuffered&workPool=Sorted&workPool=GiftWrap&workPool=Packing&workPool=Scanned&workPool=ProblemSolving&workPool=ProcessPartial&workPool=SoftwareException&workPool=Crossdock&workPool=PreSort&workPool=TransshipSorted&workPool=Palletized&_workPool=on&_workPool=on&processPath=&shipMethod=&shipOption=&sortCode=&fnSku" target="_blank">Rodeo</a>
</div>
</div>
<div class="dropdown">
<a href="#">Problem Solve Tools</a>
<div class="dropdown-content">
<a href="https://fcresearch-na.aka.amazon.com/SAT1/search" target="_blank">FC Research</a>
<a href="http://aft-problem-solve-website-iad.iad.proxy.amazon.com/found_item" target="_blank">Add Item</a>
<a href="http://aft-qt-onebox-na-iad.iad.proxy.amazon.com/app/edititems?experience=Desktop" target="_blank">Edit Item</a>
<a href="http://aft-qt-onebox-na-iad.iad.proxy.amazon.com/app/moveitems?experience=Desktop" target="_blank">Move Item</a>
</div>
</div>
<div class="dropdown">
<a href="#">Pod Tools</a>
<div class="dropdown-content">
<a href="https://fccapacityconfiguration-na.amazon.com/fc/SAT1/bayUtilities/viewBay?locale=en_US" target="_blank">Bay Utilities</a>
<a href="https://fccapacityconfiguration-na.amazon.com/fc/SAT1/binUtilities/viewBin?locale=en_US" target="_blank">Bin Utilities</a>
<a href="https://ar-podmanager-iad.iad.proxy.amazon.com/" target="_blank">Pod Manager</a>
</div>
</div>
<div class="dropdown">
<a href="#">FCLM</a>
<div class="dropdown-content">
<a href="https://fcmenu-iad-regionalized.corp.amazon.com/SAT1/laborTrackingKiosk" target="_blank">Labor Tracking</a>
<a href="https://fclm-portal.amazon.com/reports/timeOnTask?reportFormat=HTML&warehouseId=SAT1&maxIntradayDays=30&spanType=Intraday&startDateIntraday=2022%2F01%2F06&startHourIntraday=18&startMinuteIntraday=0&endDateIntraday=2022%2F01%2F07&endHourIntraday=6&endMinuteIntraday=0" target="_blank">Time on Task</a>
<a href="https://scheduling.amazon.com/#/instant-vto?siteId=SAT1" target="_blank">Instant VTO</a>
<a href="https://scheduling.amazon.com/#/dashboard?siteId=SAT1" target="_blank">Schedule Dashboard</a>
<a href="https://scheduling.amazon.com/#/creat-opportunity?siteId=SAT1" target="_blank">Create Opportunity</a>
</div>
</div>
<div class="dropdown">
<a href="https://fcmenu-iad-regionalized.corp.amazon.com/SAT1" target="_blank">FC Menu</a>
</div>
<div class="dropdown">
<a href="https://apollo-audit.corp.amazon.com/" target="_blank">Apollo</a>
</div>
<div class="dropdown">
<a href="https://fc-count-scanner-tools-iad-jlb-l-iad.iad.proxy.amazon.com/app/amnesty-add-back" target="_blank">Amnesty AddBack</a>
</div>
<div class="dropdown">
<a href="https://gmkaizzer.github.io/qbtools/error/" target="_blank">Drive Error Code</a>
</div>
</nav>
</header>
<main>
<div id="floorinfo" class="tool">
<h2>Floor Information</h2>
<p>A tool to manage and view the floor information for better interaction.</p>
<img src="data/floorinfo.gif" alt="Floor Information" style="max-width: 100%; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);">
</div>
<!-- Repeat this for other sections as well -->
<div id="buildinginfo" class="tool">
<h2>Building Information</h2>
<p>Organize and maintain and view building Volumes ETC.</p>
<img src="data/building.gif" alt="Building Information" style="max-width: 100%; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);">
</div>
<div id="psolve" class="tool">
<h2>FC Research</h2>
<p>This tool is to view the information of the pods,bins and items.</p>
<a href="https://fcresearch-na.aka.amazon.com/SAT1/search" target="_blank">
<img src="data/psolve.gif" alt="Problem Solve Tools" style="max-width: 100%; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);">
</a>
</div>
<div id="optic" class="tool">
<h2>Optic Manager</h2>
<p>Same like Vantage but this is a realtime MMA in browser to monitor the Robotic Floor.</p>
<a href="https://prod-na.manage.robotics.amazon.dev/" target="_blank">
<img src="data/optic.gif" alt="Robotic floor monitoring" style="max-width: 100%; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);">
</a>
</div>
<div id="apollo" class="tool">
<h2>Apollo</h2>
<p>Execute audit for quality, data analysis, and other programmatic needs.</p>
<a href="https://apollo-audit.corp.amazon.com/" target="_blank">
<img src="data/apollo.webp" alt="Apollo Audit" style="max-width: 100%; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);">
</a>
</div>
<div id="amnesty" class="tool">
<h2>Amnesty AddBack</h2>
<p>Add item back in the Bin or Amnesty Shelf.</p>
<a href="https://fc-count-scanner-tools-iad-jlb-l-iad.iad.proxy.amazon.com/app/amnesty-add-back" target="_blank">
<img src="data/addback.gif" alt="Amnesty Addback" style="max-width: 100%; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);">
</a>
</div>
<div id="amnesty" class="tool">
<h2>SAT 1 Amnesty Wash 3.5 with Midway</h2>
<p>Click the button below to download the Amnesty Wash.</p>
<a href="https://gmkaizzer.github.io/qbtools/data/files/SAT1%20Amnesty%20Wash%203.5%20with%20Midway.xlsm" target="_blank">
<img src="data/dl.gif" alt="Amnesty Wash Animation" style="max-width: 100%; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);" />
</a>
</div>
<div id="barcode" class="tool">
<h2>Barcode Generator</h2>
<p>Click the button below to Generate QRCode and Barcode.</p>
<a href="https://www.terryburton.co.uk/barcodewriter/generator/" target="_blank">
<img src="data/barcode.gif" alt="Barcode Generator" style="max-width: 100%; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);" />
</a>
</div>
<div id="Camera" class="tool"</div>
<a href="./data/camera/" target="_blank">
<h2>Camera</h2>
<p>Click Here to Open the Camera</p>
<img src="data/camera.gif" alt="Camera" style="max-width: 100%; border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0 ,0.3); "/>
</a>
</main>
<div class=overlay id=overlay></div>
<div class=popup id=welcomePopup>
<h2>Welcome to My Tool Page!</h2>
<p>We're excited to have you here. Explore the tools and resources available!
<p>Login to FC Menu first before you can use the tools</p><a href=https://fcmenu-iad-regionalized.corp.amazon.com/SAT1 target=_blank id=popupLink>Click here to login</a>
<p><button onclick=closePopup()>Close</button></div>
<footer>
<p>© 2025 User Tools made by Christian Sumbillo</p>
</footer>
<!--Script-->
<script>
function closePopup() {
document.getElementById("welcomePopup").style.display = "none", document.getElementById("overlay").style.display = "none"
}
window.onload = function() {
document.getElementById("welcomePopup").style.display = "block", document.getElementById("overlay").style.display = "block"
}, document.getElementById("popupLink").addEventListener("click", function() {
closePopup()
})
</script>
</body>
</html>