forked from mavicompanion/BU-Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
605 lines (595 loc) · 26.6 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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags: Define document's character set and responsive design -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BU Notes</title>
<!-- Link to Bootstrap CSS for responsive design and pre-built components -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<!-- Font Awesome for icons used throughout the page -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Link to custom stylesheet for further design customization -->
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<!-- Main container for the entire layout (Bootstrap Fluid Container) -->
<div class="container-fluid p-0 d-flex h-100">
<!-- Sidebar: Vertical navigation and information area -->
<div
class="d-flex flex-column flex-shrink-0 px-4 py-3 offcanvas-md offcanvas-start"
style="width: 250px"
id="sideBar"
>
<!-- Header of Sidebar: Displays logo and app title -->
<div class="d-flex">
<!-- App logo on the left side -->
<span
><img
src="./img/google-drive.png"
width="36px"
class="me-3"
alt="App Logo"
/></span>
<!-- App title next to the logo -->
<h5 class="fw-semibold mt-2">BU Notes</h5>
</div>
<div class="dropdown">
<button class="btn new-button mb-3 mt-4" style="width: 110px" dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-solid fa-plus fs-5 fw-light"></i>
<span class="ms-3 me-auto fw-semibold">New</span>
</button>
<ul class="dropdown-menu mt-1 rounded-2 new-button-dropdown">
<li class="p-0 dropdown-list-item px-3 py-1 mb-2"><a class="m-0" href="#"><img src="./img/new-folder.png" class=" p-0 m-0 me-3" style="width: 20px;" alt="">New Folder</a></li>
<hr class="m-0">
<li class="p-0 dropdown-list-item px-3 py-1 mt-2"><a class="m-0" href="#"><img src="./img/file-upload.png" class=" p-0 m-0 me-3" style="width: 20px;" alt="">New File</a></li>
<li class="p-0 dropdown-list-item px-3 py-1 mb-2"><a class="m-0" href="#"><img src="./img/new-folder.png" class=" p-0 m-0 me-3" style="width: 20px;" alt="">New Folder</a></li>
<hr class="m-0">
<li class="p-0 dropdown-list-item px-3 py-1 mt-2 mb-1"><a class="m-0" href="#"><img src="./img/google-docs.png" class=" p-0 m-0 me-3" style="width: 20px;" alt="">Google Document</a></li>
<li class="p-0 dropdown-list-item px-3 py-1 mb-1"><a class="m-0" href="#"><img src="./img/google-sheets.png" class=" p-0 m-0 me-3" style="width: 20px;" alt="">Google Sheet</a></li>
<li class="p-0 dropdown-list-item px-3 py-1 mb-1"><a class="m-0" href="#"><img src="./img/goolge-slides.png" class=" p-0 m-0 me-3" style="width: 20px;" alt="">Google Slide</a></li>
</ul>
</div>
<!-- Navigation Links for Sidebar -->
<div class="d-flex flex-column flex-fill">
<!-- Home link -->
<a href="" class="px-2 py-1 mb-1 rounded-pill nav-link active">
<p class="m-0">
<i class="fa fa-home me-2" aria-hidden="true"></i>Home
</p>
</a>
<!-- 1st Year link -->
<a
href="./pages/firstYear.html"
class="px-2 py-1 mb-1 rounded-pill nav-link"
>
<p class="m-0">
<i class="fa-solid fa-graduation-cap me-2"></i>1st Year
</p>
</a>
<!-- Video Lectures link -->
<a
href="./pages/videoLectures.html"
class="px-2 py-1 mb-1 rounded-pill nav-link"
>
<p class="m-0">
<i class="fa-solid fa-film me-2" aria-hidden="true"></i>Video
Lectures
</p>
</a>
<!-- Info page link -->
<a
href="./pages/info.html"
class="px-2 py-1 mb-1 rounded-pill nav-link"
>
<p class="m-0"><i class="fa-solid fa-circle-info me-2"></i>Info</p>
</a>
<!-- Grievances page link -->
<a href="" class="px-2 py-1 mb-1 rounded-pill nav-link">
<p class="m-0">
<i class="fa-solid fa-paper-plane me-2"></i>Grievances
</p>
</a>
</div>
<!-- Storage Stats bar -->
<div class="">
<p class="m-0">
<i class="fa-solid fa-cloud me-2 mb-3"></i>Storage
</p>
<div class="progress" role="progressbar" aria-label="Basic example" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar rounded-pill" style="width: 75%"></div>
</div>
<p class="py-2" style="color: rgba(0, 0, 0, 0.65);">75GB of 100GB used</p>
</div>
</div>
<!-- Main content area -->
<div class="flex-fill d-flex flex-column space-between">
<!-- Responsive Navbar for smaller screens (collapsible menu) -->
<div class="p-3 py-3 d-md-none d-flex text-white bg-dark">
<a
href=""
class="text-white"
data-bs-toggle="offcanvas"
data-bs-target="#sideBar"
>
<i class="fa-solid fa-bars" style="font-size: 25px"></i>
</a>
<span class="ms-3 fw-bold">BU Notes</span>
</div>
<!-- Add the search bar and app buttons here -->
<div class="sea">
<div class="search-container">
<div class="search-box">
<button><i class="button rounded-circle p-2 m-0 fa-solid fa-magnifying-glass"></i></button>
<input type="text" placeholder="Search in Drive" />
<button class="button rounded-circle px-2">
<i class="fas fa-sliders-h"></i>
</button>
</div>
</div>
<div class="appButtonsContainer">
<div class="app-buttons">
<i class="button rounded-circle p-2 m-0 fa-regular fa-circle-question fs-5"></i>
<i class="button rounded-circle p-2 m-0 fas fa-cog fs-5"></i>
<!-- More Apps Dropdown -->
<div class="dropdown">
<button class="btn button rounded-pill m-0 p-0" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<i class="p-2 m-0 fas fa-th fs-5"></i>
</button>
<ul class="dropdown-menu rounded-5 more-apps mt-2">
<div class="d-flex flex-column align-items-center justify-content-center">
<div class="rounded-5 bg-white d-flex ms-2 me-2 py-3 px-3">
<div class="container text-center mt-3 mb-3">
<div class="row row-cols-3 gy-4">
<div class="col">
<a class="d-flex flex-column text-decoration-none">
<img src="img/google-search.png" alt="Account" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Search</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-maps.png" alt="Search" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Maps</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-gcp.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Cloud</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-news.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">News</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-calendar.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Calendar</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/g-mail.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Gmail</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-photos.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Photos</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-news.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">News</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-meet.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Meet</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-lens.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Lens</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/g-drive.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Drive</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-docs.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Docs</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-forms.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Forms</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-keep.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Keep</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/google-sheets.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Sheets</p>
</a>
</div>
<div class="col">
<a class="d-flex flex-column align-items-center text-decoration-none">
<img src="img/goolge-slides.png" alt="Maps" class="icon-size ms-auto me-auto">
<p class="mt-2 mb-0">Slides</p>
</a>
</div>
</div>
</div>
</div>
<div class="container text-center mt-4 mb-4">
<a href="./index.html" class="btn rounded-button px-4 py-2">
More from Mavi
</a>
</div>
</div>
</ul>
</div>
<div class="dropdown">
<button class="btn p-0 m-0 ms-2 rounded-circle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<img src="./img/profile.png" class="m-0" alt="Profile Picture" />
</button>
<ul class="dropdown-menu mt-2 account-container rounded-5">
<div class="text-center fs-small mt-2">
vishnurchityala@gmail.com
</div>
<div class="w-100 d-flex flex-column mt-4 mb-0">
<img src="./img/mavi-logo.png" class="ms-auto me-auto" alt="Logo" style="width: 70px;height: 70px;">
<p class="fs-5 text-center mt-1">Hi, Vishnu!</p>
</div>
<div class="container text-center">
<a href="./index.html" class="btn rounded-button px-4 py-2 fs-small">
Manage your Google Account
</a>
</div>
<a href="#" class="btn btn-light d-flex align-items-center rounded-pill px-3 py-2 shadow-sm m-2 ms-auto me-auto fs-small mt-2" style="width: fit-content;">
<i class="fa-solid fa-arrow-right-from-bracket m-0 me-2 p-0" style="font-size: small;"></i>
Sign out
</a>
<div class="text-center fs-small mt-5 mb-3">
Privacy Policy - Terms of Service
</div>
</ul>
</div>
</div>
</div>
</div>
<!-- Main content area where the assets (notes, videos) are displayed -->
<div
class="flex-fill ms-md-2 me-md-3 mt-md-3 mb-md-4 content-area py-4 px-1"
>
<!-- Page header -->
<p class="page-title rounded-pill ms-2">Home page</p>
<!-- Favourites section where pinned/favorite content is displayed -->
<h6 class="ms-4 ms-md-6 mb-3">Favourites</h6>
<div
class="d-flex flex-wrap ms-2 ms-md-4 mb-2 mt-2"
style="
justify-items: flex-start;
justify-content: space-between;
padding-right: 1rem;
"
>
<!-- Favourites Tile: Example content for previous papers -->
<a href="" class="favourites-tile rounded-4">
<div class="bg-white p-3 rounded-3 me-2">
<img src="./img/archive.png" width="30px" alt="" />
</div>
<div>
<p
style="
font-size: large;
font-weight: 500;
margin: 0px;
line-height: normal;
text-wrap: balance;
"
>
Previous Papers
</p>
<p style="font-size: small; margin-top: 0.2rem">159 items</p>
</div>
</a>
<a href="" class="favourites-tile rounded-4">
<div class="bg-white p-3 rounded-3 me-2">
<img src="./img/light-bulb.png" width="30px" alt="" />
</div>
<div>
<p
style="
font-size: large;
font-weight: 500;
margin: 0px;
line-height: normal;
"
>
Topper's Notes
</p>
<p style="font-size: small; margin-top: 0.2rem">159 items</p>
</div>
</a>
<a href="" class="favourites-tile rounded-4">
<div class="bg-white p-3 rounded-3 me-2">
<img src="./img/youtube.png" width="30px" alt="" />
</div>
<div>
<p
style="
font-size: large;
font-weight: 500;
margin: 0px;
line-height: normal;
"
>
Video Lectures
</p>
<p style="font-size: small; margin-top: 0.2rem">159 items</p>
</div>
</a>
<a href="" class="favourites-tile rounded-4">
<div class="bg-white p-3 rounded-3 me-2">
<img src="./img/paper.png" width="30px" alt="" />
</div>
<div>
<p
style="
font-size: large;
font-weight: 500;
margin: 0px;
line-height: normal;
"
>
Formula Sheets
</p>
<p style="font-size: small; margin-top: 0.2rem">159 items</p>
</div>
</a>
</div>
<!-- Suggested items section -->
<h6 class="ms-4 ms-md-6 mb-3">Suggested</h6>
<div
class="d-flex flex-wrap gap-1 gap-md-2 ms-md-4"
style="justify-items: flex-start"
>
<!-- Suggested file tile -->
<div
class="bg-slate rounded-4 p-2 pb-3 file-tile ms-2 m-md-1 file-tile"
>
<div class="m-0 d-flex p-2 gap-1 align-items-center">
<a
href=""
data-bs-toggle="tooltip"
title="DMS All slidesaaaaaaaaaajjjjjjaaaaaaaa"
class="d-flex gap-2 align-items-center"
>
<p class="m-0 fw-semibold" style="font-size: small">
DMS All slidesaaaaaaaaaajjjjjjaaaaaaaa
</p>
</a>
<a href="" class="ms-auto d-flex button p-2 rounded-pill">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
<a href="">
<div
class="rounded-4 bg-white py-5 py-md-5 d-flex justify-content-center"
>
<img src="./img/pdf.png" width="40px" alt="" />
</div>
</a>
</div>
<div
class="bg-slate rounded-4 p-2 pb-3 file-tile ms-2 m-md-1 file-tile"
>
<div class="m-0 d-flex p-2 gap-1 align-items-center">
<a
href=""
data-bs-toggle="tooltip"
title="DMS All slidesaaaaaaaaaajjjjjjaaaaaaaa"
class="d-flex gap-2 align-items-center"
>
<p class="m-0 fw-semibold" style="font-size: small">
DMS All slidesaaaaaaaaaaaaaaaaaajjnjjnjj
</p>
</a>
<a href="" class="ms-auto d-flex button p-2 rounded-pill">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
<a href="">
<div
class="rounded-4 bg-white py-5 py-md-5 d-flex justify-content-center"
>
<img src="./img/pdf.png" width="40px" alt="" />
</div>
</a>
</div>
<div
class="bg-slate rounded-4 p-2 pb-3 file-tile ms-2 m-md-1 file-tile"
>
<div class="m-0 d-flex p-2 gap-1 align-items-center">
<a
href=""
data-bs-toggle="tooltip"
title="DMS All slidesaaaaaaaaaajjjjjjaaaaaaaa"
class="d-flex gap-2 align-items-center"
>
<p class="m-0 fw-semibold" style="font-size: small">
DMS All slidesaaaaaaaaaaaaaaaaaajjnjjnjj
</p>
</a>
<a href="" class="ms-auto d-flex button p-2 rounded-pill">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
<a href="">
<div
class="rounded-4 bg-white py-5 py-md-5 d-flex justify-content-center"
>
<img src="./img/pdf.png" width="40px" alt="" />
</div>
</a>
</div>
<div
class="bg-slate rounded-4 p-2 pb-3 file-tile ms-2 m-md-1 file-tile"
>
<div class="m-0 d-flex p-2 gap-1 align-items-center">
<a
href=""
data-bs-toggle="tooltip"
title="DMS All slidesaaaaaaaaaajjjjjjaaaaaaaa"
class="d-flex gap-2 align-items-center"
>
<p class="m-0 fw-semibold" style="font-size: small">
DMS All slidesaaaaaaaaaaaaaaaaaajjnjjnjj
</p>
</a>
<a href="" class="ms-auto d-flex button p-2 rounded-pill">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
<a href="">
<div
class="rounded-4 bg-white py-5 py-md-5 d-flex justify-content-center"
>
<img src="./img/pdf.png" width="40px" alt="" />
</div>
</a>
</div>
<div
class="bg-slate rounded-4 p-2 pb-3 file-tile ms-2 m-md-1 file-tile"
>
<div class="m-0 d-flex p-2 gap-1 align-items-center">
<a
href=""
data-bs-toggle="tooltip"
title="DMS All slidesaaaaaaaaaajjjjjjaaaaaaaa"
class="d-flex gap-2 align-items-center"
>
<p class="m-0 fw-semibold" style="font-size: small">
DMS All slidesaaaaaaaaaaaaaaaaaajjnjjnjj
</p>
</a>
<a href="" class="ms-auto d-flex button p-2 rounded-pill">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
<a href="">
<div
class="rounded-4 bg-white py-5 py-md-5 d-flex justify-content-center"
>
<img src="./img/pdf.png" width="40px" alt="" />
</div>
</a>
</div>
<div
class="bg-slate rounded-4 p-2 pb-3 file-tile ms-2 m-md-1 file-tile"
>
<div class="m-0 d-flex p-2 gap-1 align-items-center">
<a
href=""
data-bs-toggle="tooltip"
title="DMS All slidesaaaaaaaaaajjjjjjaaaaaaaa"
class="d-flex gap-2 align-items-center"
>
<p class="m-0 fw-semibold" style="font-size: small">
DMS All slidesaaaaaaaaaaaaaaaaaajjnjjnjj
</p>
</a>
<a href="" class="ms-auto d-flex button p-2 rounded-pill">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
<a href="">
<div
class="rounded-4 bg-white py-5 py-md-5 d-flex justify-content-center"
>
<img src="./img/pdf.png" width="40px" alt="" />
</div>
</a>
</div>
</div>
<!-- Recently added items section -->
<h6 class="ms-4 ms-md-6 mt-4 mb-3">Recently Added</h6>
<div class="ps-2 ps-md-0 pe-3 pe-md-0 d-flex flex-column ms-4">
<!-- File list item -->
<div class="ms-2 py-2 px-3 d-flex file-list-tile">
<a href="" class="d-flex gap-2 align-items-center flex-fill">
<img
src="./img/pdf.png"
width="18px"
style="margin: 0px"
alt=""
/>
<p class="m-0 fw-semibold" style="font-size: small">
DMS All slides
</p>
</a>
<a href="" class="ms-auto d-flex button p-2 rounded-pill">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
<!-- file list item tile -->
<div class="ms-2 py-2 px-3 d-flex file-list-tile">
<a href="" class="d-flex gap-2 align-items-center flex-fill">
<img
src="./img/pdf.png"
width="18px"
style="margin: 0px"
alt=""
/>
<p class="m-0 fw-semibold" style="font-size: small">
DMS All slides
</p>
</a>
<a href="" class="ms-auto d-flex button p-2 rounded-pill">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- Bootstrap and Popper.js scripts for enabling interactivity such as sidebar toggle -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
<script src="./script.js"></script>
</html>