-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (65 loc) · 3.51 KB
/
Copy pathindex.html
File metadata and controls
81 lines (65 loc) · 3.51 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PromptShield AI Security Dashboard</title>
<!-- Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="app">
<header>
<nav class="navbar navbar-expand-lg" aria-label="Navigazione principale">
<div class="container-fluid">
<!-- logo svg gen-->
<router-link class="navbar-brand" to="/">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true">
<path d="M12 2L4 6v6c0 5.5 3.5 10.7 8 12 4.5-1.3 8-6.5 8-12V6L12 2z" stroke="#e6edf3"
stroke-width="1.5" stroke-linejoin="round" />
<path d="M9 12l1.5 1.5L15 10" stroke="#58a6ff" stroke-width="1.8" stroke-linecap="round" />
</svg>
<span>Prompt<span class="text-accent">Shield</span></span>
</router-link>
<!-- hamb MOBILE -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#menuPrincipale" aria-controls="menuPrincipale" aria-expanded="false"
aria-label="Apri menu di navigazione">
<span class="navbar-toggler-icon"></span>
</button>
<!-- link -->
<div class="collapse navbar-collapse" id="menuPrincipale">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<router-link class="nav-link" active-class="active" to="/">Cos'è Chart.js</router-link>
</li>
<li class="nav-item">
<router-link class="nav-link" active-class="active" to="/approfondimento">Approfondimento</router-link>
</li>
<li class="nav-item">
<router-link class="nav-link" active-class="active" to="/dashboard">Dashboard</router-link>
</li>
<li class="nav-item">
<router-link class="nav-link" active-class="active" to="/crud">Gestione Dati</router-link>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container-fluid py-4">
<router-view></router-view>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.js"></script>
<script src="https://unpkg.com/vue-router@4"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="js/app.js"></script>
</body>
</html>