-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (98 loc) · 2.97 KB
/
Copy pathindex.html
File metadata and controls
109 lines (98 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Repository Index</title>
<style>
:root {
--bg: #f8fafc;
--card-bg: #ffffff;
--text-primary: #0f172a;
--text-secondary: #64748b;
--border: #e2e8f0;
--accent: #4f46e5;
--accent-dim: #e0e7ff;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #0f172a;
--card-bg: #1e293b;
--text-primary: #f8fafc;
--text-secondary: #94a3b8;
--border: #334155;
--accent: #818cf8;
--accent-dim: #2e2a75;
}
}
body {
font-family: system-ui, -apple-system, sans-serif;
background-color: var(--bg);
color: var(--text-primary);
margin: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 24px;
box-sizing: border-box;
}
.container {
width: 100%;
max-width: 440px;
background-color: var(--card-bg);
border: 1px solid var(--border);
border-radius: 16px;
padding: 32px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
text-align: center;
}
h1 {
font-size: 24px;
font-weight: 600;
margin: 0 0 8px 0;
}
p {
font-size: 15px;
color: var(--text-secondary);
margin: 0 0 32px 0;
}
.menu {
display: flex;
flex-direction: column;
gap: 12px;
}
.nav-btn {
display: block;
padding: 14px;
color: var(--text-primary);
background-color: var(--card-bg);
border: 1px solid var(--border);
border-radius: 12px;
text-decoration: none;
font-weight: 500;
font-size: 15px;
transition: all 0.2s ease;
}
.nav-btn:hover {
border-color: var(--accent);
background-color: var(--accent-dim);
color: var(--accent);
transform: translateY(-1px);
}
</style>
</head>
<body>
<div class="container">
<h1>Navigation Hub</h1>
<p>Select a page to open</p>
<nav class="menu">
<a href="simulateur_lookahead.html" class="nav-btn">Simulateur Lookahead</a>
<a href="simulateur_de_path_following.html" class="nav-btn">Path Following</a>
<a href="communications.html" class="nav-btn">Communications</a>
<a href="path_finder.html" class="nav-btn">Path Finder</a>
<a href="a_star.html" class="nav-btn">A* Algorithm</a>
</nav>
</div>
</body>
</html>