-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (57 loc) · 3.11 KB
/
Copy pathindex.html
File metadata and controls
58 lines (57 loc) · 3.11 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="%BASE_URL%logo_visionpilotnobg.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="VisionPilot: A modular Python project for autonomous driving research, integrating BeamNG.tech soft-body physics with state-of-the-art computer vision (YOLO, SCNN), sensor fusion, and real-time control." />
<meta name="keywords" content="Autonomous Driving, BeamNG.tech, Computer Vision, YOLO, SCNN, Sensor Fusion, Robotics, Simulation, Python, Deep Learning, VisionPilot" />
<meta name="author" content="Julian Stamm" />
<link rel="canonical" href="https://visionpilot-project.github.io/visionpilot-page/" />
<meta property="og:title" content="VisionPilot | Autonomous Driving Simulation & Perception" />
<meta property="og:description" content="VisionPilot: A modular Python project for autonomous driving research, integrating BeamNG.tech soft-body physics with state-of-the-art computer vision (YOLO, SCNN), sensor fusion, and real-time control." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://visionpilot-project.github.io/visionpilot-page/" />
<meta property="og:image" content="https://visionpilot-project.github.io/visionpilot-page/logo_visionpilotnobg.png" />
<meta property="og:site_name" content="VisionPilot" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="VisionPilot | Autonomous Driving Simulation & Perception" />
<meta name="twitter:description" content="VisionPilot: A modular Python project for autonomous driving research, integrating BeamNG.tech soft-body physics with state-of-the-art computer vision (YOLO, SCNN), sensor fusion, and real-time control." />
<meta name="twitter:image" content="https://visionpilot-project.github.io/visionpilot-page/logo_visionpilotnobg.png" />
<meta name="theme-color" content="#0891b2" />
<title>VisionPilot | Autonomous Driving Simulation & Perception</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6H1HVLTXWB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-6H1HVLTXWB');
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap" rel="stylesheet">
<style>
body {
background-color: #ffffff;
color: #0f172a;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>