-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-order-management.html
More file actions
481 lines (427 loc) · 20.8 KB
/
Copy pathproject-order-management.html
File metadata and controls
481 lines (427 loc) · 20.8 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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
<!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>Adisyon Sistemi - 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;
}
/* 3D Carousel Styles */
.carousel-container {
position: relative;
width: 100%;
margin-left: 28%;
/* Shift slightly right for better visual balance */
height: 600px;
margin-top: 3rem;
margin-bottom: 4rem;
perspective: 2000px;
display: flex;
align-items: center;
justify-content: center;
overflow: visible;
}
.project-gallery {
position: relative;
width: 100%;
max-width: 1200px;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
transform-style: preserve-3d;
padding: 0;
}
.carousel-item {
position: absolute;
width: 750px;
height: 500px;
object-fit: contain;
background: #0a0a0a;
border-radius: 20px;
border: 1px solid var(--border);
transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
cursor: pointer;
user-select: none;
opacity: 0;
pointer-events: none;
transform: translateX(0) scale(0.3) translateZ(-500px);
z-index: 0;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.carousel-item.active {
opacity: 1;
pointer-events: auto;
transform: translateX(0) scale(1.1) translateZ(0);
/* Slightly larger and forward */
z-index: 20;
border-color: var(--accent);
box-shadow: 0 40px 100px rgba(0, 196, 204, 0.4);
}
.carousel-item.prev {
opacity: 0.9;
pointer-events: auto;
transform: translateX(-380px) scale(0.7) translateZ(-200px) rotateY(30deg);
z-index: 10;
}
.carousel-item.next {
opacity: 0.9;
pointer-events: auto;
transform: translateX(380px) scale(0.7) translateZ(-200px) rotateY(-30deg);
z-index: 10;
}
/* Navigation Arrows */
.carousel-nav {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
z-index: 100;
padding: 0 1.5rem;
pointer-events: none;
}
.nav-btn {
width: 60px;
height: 60px;
border-radius: 50%;
background: #0a0a0a;
/* Fully opaque background */
border: 2px solid var(--accent);
/* More prominent border */
color: var(--accent);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
pointer-events: auto;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.nav-btn:hover {
background: var(--accent);
color: #000;
transform: scale(1.1);
box-shadow: 0 0 25px rgba(0, 196, 204, 0.5);
}
@media (max-width: 1000px) {
.carousel-item {
width: 600px;
height: 400px;
}
.carousel-item.prev {
transform: translateX(-250px) scale(0.7);
}
.carousel-item.next {
transform: translateX(250px) scale(0.7);
}
.carousel-container {
height: 500px;
}
}
@media (max-width: 768px) {
.carousel-item {
width: 320px;
height: 220px;
}
.carousel-item.prev {
transform: translateX(-120px) scale(0.65);
}
.carousel-item.next {
transform: translateX(120px) scale(0.65);
}
.carousel-container {
height: 350px;
}
.nav-btn {
width: 45px;
height: 45px;
}
}
.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="ADİSYON SİSTEMİ" data-en="ORDER MANAGEMENT SYSTEM">ADİSYON SİSTEMİ</h1>
</div>
<div class="project-hero-area"
style="display: flex; gap: 4rem; align-items: flex-start; margin-bottom: 4rem;">
<img src="assets/images/digitab_logo.png" alt="DigiTab Logo" class="project-main-image"
style="width: 300px; height: 300px; object-fit: contain; border: none; box-shadow: 0 0 50px rgba(0, 196, 204, 0.2); flex-shrink: 0;">
<div class="project-meta" style="flex-grow: 1; border: none; background: transparent; padding: 0;">
<div class="meta-item">
<span class="meta-label" data-tr="Kategori" data-en="Category">Kategori</span>
<span class="meta-value" data-tr="Fullstack Web Uygulaması"
data-en="Fullstack Web App">Fullstack Web Uygulaması</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="Frontend" data-en="Frontend">Frontend</span>
<span class="meta-value">React.js, TypeScript, TailwindCSS</span>
</div>
<div class="meta-item">
<span class="meta-label" data-tr="Backend & Database" data-en="Backend & Database">Backend &
Database</span>
<span class="meta-value">Node.js, Express, MongoDB, Socket.io</span>
</div>
</div>
</div>
<div class="project-info-grid" style="margin-top: 2rem;">
<div class="project-description">
<h3 data-tr="Proje Hakkında" data-en="About the Project">Proje Hakkında</h3>
<p data-tr="DigiTab, restoran ve kafeler için geliştirilmiş, masa sipariş süreçlerini dijitalleştiren kapsamlı bir Adisyon ve Yönetim Sistemidir. Kağıt adisyon karmaşasını ortadan kaldırarak garson, mutfak ve kasa arasındaki iletişimi hızlandırır."
data-en="DigiTab is a comprehensive Order and Management System developed for restaurants and cafes, digitalizing table ordering processes. It eliminates the mess of paper bills and speeds up communication between waiters, the kitchen, and the cashier.">
DigiTab, restoran ve kafeler için geliştirilmiş, masa sipariş süreçlerini dijitalleştiren
kapsamlı bir Adisyon ve Yönetim Sistemidir. Kağıt adisyon karmaşasını ortadan kaldırarak garson,
mutfak ve kasa arasındaki iletişimi hızlandırır.
</p>
<h3 data-tr="Öne Çıkan Özellikler" data-en="Key Features">Öne Çıkan Özellikler</h3>
<ul style="color: var(--text-secondary); line-height: 2; margin-bottom: 2rem;">
<li data-tr="🪑 Masa Yönetimi: Masaların doluluk oranlarını ve sipariş sürelerini anlık izleme."
data-en="🪑 Table Management: Instant tracking of table occupancy and order durations.">🪑
Masa Yönetimi: Masaların doluluk oranlarını ve sipariş sürelerini anlık izleme.</li>
<li data-tr="📝 Sipariş Takibi: Tablet üzerinden hızlı sipariş alımı ve mutfağa iletim."
data-en="📝 Order Tracking: Fast order taking via tablets and transmission to the kitchen.">
📝 Sipariş Takibi: Tablet üzerinden hızlı sipariş alımı ve mutfağa iletim.</li>
<li data-tr="🍔 Dijital Menü: Ürün kategorileri, fiyatlandırma ve stok yönetimi."
data-en="🍔 Digital Menu: Product categories, pricing, and stock management.">🍔 Dijital
Menü: Ürün kategorileri, fiyatlandırma ve stok yönetimi.</li>
<li data-tr="🧾 Hızlı Adisyon: Tek tıkla hesap dökümü ve dijital fatura."
data-en="🧾 Quick Billing: Single-click bill generation and digital invoicing.">🧾 Hızlı
Adisyon: Tek tıkla hesap dökümü ve dijital fatura.</li>
<li data-tr="📊 Raporlama: Günlük ciro ve en çok satan ürün analizleri."
data-en="📊 Reporting: Daily turnover and best-selling product analysis.">📊 Raporlama:
Günlük ciro ve en çok satan ürün analizleri.</li>
</ul>
<h3 data-tr="Uygulama Görselleri" data-en="App Screenshots"
style="color: var(--accent); margin-bottom: 2rem; font-size: 1.5rem;">Uygulama Görselleri</h3>
<div class="carousel-container">
<div class="project-gallery" id="projectGallery">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.44.37 (1).jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.44.37.jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.44.37 (2).jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.44.37 (3).jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.44.37 (4).jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.44.37 (5).jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.46.46.jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.46.46 (1).jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.46.47.jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.46.47 (1).jpeg"
alt="DigiTab Screenshot" class="carousel-item">
<img src="assets/images/digitab/WhatsApp Image 2026-04-19 at 21.46.47 (2).jpeg"
alt="DigiTab Screenshot" class="carousel-item">
</div>
<div class="carousel-nav">
<button class="nav-btn" id="prevBtn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<button class="nav-btn" id="nextBtn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
</div>
</div>
<a href="https://github.com/FatihAksoyEEE/DigiTab" target="_blank" class="cv-button"
style="display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem;">
<img src="assets/images/github.svg" alt="GitHub" style="width: 20px; filter: invert(1);">
<span>GITHUB REPOSITORY</span>
</a>
</div>
</div>
</section>
</div>
<script src="script.js"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
const items = document.querySelectorAll('.carousel-item');
const prevBtn = document.getElementById('prevBtn');
const nextBtn = document.getElementById('nextBtn');
let currentIndex = 0;
function updateCarousel() {
items.forEach((item, index) => {
item.classList.remove('active', 'prev', 'next');
if (index === currentIndex) {
item.classList.add('active');
} else if (index === (currentIndex - 1 + items.length) % items.length) {
item.classList.add('prev');
} else if (index === (currentIndex + 1) % items.length) {
item.classList.add('next');
}
});
}
prevBtn.addEventListener('click', () => {
currentIndex = (currentIndex - 1 + items.length) % items.length;
updateCarousel();
});
nextBtn.addEventListener('click', () => {
currentIndex = (currentIndex + 1) % items.length;
updateCarousel();
});
// Handle click on side images
items.forEach((item, index) => {
item.addEventListener('click', () => {
if (index === (currentIndex - 1 + items.length) % items.length) {
currentIndex = index;
updateCarousel();
} else if (index === (currentIndex + 1) % items.length) {
currentIndex = index;
updateCarousel();
}
});
});
updateCarousel();
});
</script>
</body>
</html>