-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflyer.html
More file actions
83 lines (75 loc) · 3.38 KB
/
Copy pathflyer.html
File metadata and controls
83 lines (75 loc) · 3.38 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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AIC Smart Mobility - Letáček A5</title>
<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@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="flyer.css">
</head>
<body>
<div class="background-effects">
<div class="glow glow-1"></div>
<div class="glow glow-2"></div>
</div>
<div class="flyer-content">
<header class="header">
<div class="logo">
<img src="assets/Symbol_AIC_Holo.svg" alt="AIC Logo" class="logo-img">
AIC Smart Mobility
</div>
<h1>Inovace v dopravě a <span>optimalizaci</span></h1>
<p class="subtitle">Smart Mobility: Realistické simulace, optimalizace a neuronové sítě.</p>
</header>
<main>
<section class="section glassmorphism">
<h2 class="section-title">Naše Projekty</h2>
<div class="projects-list">
<div class="project-item">
<h3>Simulace provozu</h3>
<p>Plánování mobility na základě reálných dat.</p>
</div>
<div class="project-item">
<h3>Predikce IZS</h3>
<p>Optimalizace průjezdu záchranných složek.</p>
</div>
<div class="project-item">
<h3>AgentDrive 2.0</h3>
<p>Fyzikální simulátor silniční dopravy.</p>
</div>
<div class="project-item">
<h3>NN & Optimalizace</h3>
<p>Deep Learning pro logistiku a VRP.</p>
</div>
</div>
</section>
<section class="section thesis-cta glassmorphism">
<h2>Témata závěrečných prací</h2>
<p class="subtitle">Hledáme motivované studenty pro Bc. a Ing. práce!</p>
<div class="project-item" style="text-align: left; margin-top: 2mm;">
<p>• Využití NN pro VRP • Predikce tras IZS • Tvorba simulací • Vývoj nástrojů</p>
</div>
</section>
</main>
<footer class="footer">
<div class="qr-container">
<img src="https://api.qrserver.com/v1/create-qr-code/?size=200x200&data=https://kubikade.github.io/smartmobility_web/"
alt="QR Kód" class="qr-code">
</div>
<div class="contact-info">
<p class="subtitle">Více informací a kontakty:</p>
<a href="https://kubikade.github.io/smartmobility_web/"
class="url">kubikade.github.io/smartmobility_web/</a>
<p class="copyright">© 2026 Artificial Intelligence Center, FEL, ČVUT</p>
</div>
</footer>
</div>
<!-- Script to help with print layout if needed, though CSS should handle it -->
<script>
// You can add logic here if you want to automatically trigger print
// window.print();
</script>
</body>
</html>