-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-flight-controller.html
More file actions
199 lines (174 loc) · 7.75 KB
/
project-flight-controller.html
File metadata and controls
199 lines (174 loc) · 7.75 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
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
<!DOCTYPE html>
<html lang="tr" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>STM32 Flight Controller - Fatih Aksoy</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=Michroma&family=Orbitron:wght@400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<style>
.project-detail-section {
padding-top: 4rem;
min-height: 80vh;
}
.back-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--accent);
text-decoration: none;
font-family: 'Orbitron', sans-serif;
font-size: 0.9rem;
margin-bottom: 2rem;
transition: transform 0.3s;
}
.back-link:hover {
transform: translateX(-5px);
}
.project-header {
margin-bottom: 3rem;
}
.project-main-image {
width: 100%;
max-height: 500px;
object-fit: cover;
border-radius: 4px;
border: 1px solid var(--border);
margin-bottom: 3rem;
}
.project-info-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 4rem;
}
.project-description h3 {
color: var(--accent);
margin-bottom: 1.5rem;
font-size: 1.5rem;
}
.project-description p {
color: var(--text-secondary);
font-size: 1.1rem;
margin-bottom: 1.5rem;
}
.project-meta {
background: var(--bg-card);
padding: 2rem;
border: 1px solid var(--border);
border-radius: 4px;
height: fit-content;
}
.meta-item {
margin-bottom: 1.5rem;
}
.meta-label {
display: block;
font-family: 'Orbitron', sans-serif;
font-size: 0.75rem;
color: var(--accent);
margin-bottom: 0.5rem;
text-transform: uppercase;
}
.meta-value {
color: var(--text-primary);
font-size: 1rem;
}
@media (max-width: 768px) {
.project-info-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
}
</style>
</head>
<body>
<!-- TOP NAVBAR -->
<nav class="topnav" id="topnav">
<div class="topnav-logo"><a href="index.html" style="text-decoration: none; color: inherit;">FA</a></div>
<ul class="topnav-links">
<li><a href="index.html#home" data-tr="Ana Sayfa" data-en="Home">Ana Sayfa</a></li>
<li><a href="index.html#about" data-tr="Hakkında" data-en="About">Hakkında</a></li>
<li><a href="index.html#projects" data-tr="Projeler" data-en="Projects">Projeler</a></li>
<li><a href="index.html#contact" data-tr="İletişim" data-en="Contact">İletişim</a></li>
</ul>
<div class="topnav-controls">
<button class="lang-btn" id="langBtn" title="Switch Language">
<span id="langLabel">TR</span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10" />
<line x1="2" y1="12" x2="22" y2="12" />
<path
d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" />
</svg>
</button>
<button class="theme-btn" id="themeBtn" title="Toggle Theme">
<span class="theme-icon" id="themeIcon">
<svg id="sunIcon" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<circle cx="12" cy="12" r="5" />
<line x1="12" y1="1" x2="12" y2="3" />
<line x1="12" y1="21" x2="12" y2="23" />
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64" />
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78" />
<line x1="1" y1="12" x2="3" y2="12" />
<line x1="21" y1="12" x2="23" y2="12" />
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36" />
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22" />
</svg>
<svg id="moonIcon" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" style="display:none;">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" />
</svg>
</span>
</button>
</div>
</nav>
<div class="content">
<section class="project-detail-section">
<a href="index.html#projects" class="back-link">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="19" y1="12" x2="5" y2="12"></line>
<polyline points="12 19 5 12 12 5"></polyline>
</svg>
<span data-tr="Geri Dön" data-en="Back to Projects">Geri Dön</span>
</a>
<div class="project-header">
<h1 class="main-title" data-tr="STM32 FLIGHT CONTROLLER" data-en="STM32 FLIGHT CONTROLLER">STM32 FLIGHT CONTROLLER</h1>
</div>
<img src="assets/images/STM32Flightcontroller.png" alt="STM32 Flight Controller" class="project-main-image">
<div class="project-info-grid">
<div class="project-description">
<h3 data-tr="Proje Detayları" data-en="Project Details">Proje Detayları</h3>
<p data-tr="Bu kısım yakında detaylı bilgilerle doldurulacaktır."
data-en="This section will be filled with detailed information soon.">
Bu kısım yakında detaylı bilgilerle doldurulacaktır.
</p>
</div>
<div class="project-meta">
<div class="meta-item">
<span class="meta-label" data-tr="Kategori" data-en="Category">Kategori</span>
<span class="meta-value" data-tr="Gömülü Sistemler" data-en="Embedded Systems">Gömülü Sistemler</span>
</div>
<div class="meta-item">
<span class="meta-label" data-tr="Yıl" data-en="Year">Yıl</span>
<span class="meta-value">2024</span>
</div>
<div class="meta-item">
<span class="meta-label" data-tr="Teknolojiler" data-en="Technologies">Teknolojiler</span>
<span class="meta-value">STM32, FreeRTOS, PID, IMU Sensor Fusion</span>
</div>
</div>
</div>
</section>
</div>
<script src="script.js"></script>
</body>
</html>