-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
719 lines (702 loc) · 32.3 KB
/
Copy pathindex.html
File metadata and controls
719 lines (702 loc) · 32.3 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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
<!DOCTYPE html>
<html lang="zh-TW" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>個人履歷</title>
<script src="https://cdn.tailwindcss.com"></script>
<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=Noto+Sans+TC:wght@400;700&display=swap"
rel="stylesheet"
/>
<link href="https://unpkg.com/aos@2.3.4/dist/aos.css" rel="stylesheet" />
<style>
body {
font-family: "Noto Sans TC", sans-serif;
background-color: #1a1a2e; /* 深藍紫色背景 */
color: #e0e0e0;
}
.text-accent {
color: #66d2ce;
}
.bg-accent {
background-color: #66d2ce;
}
.border-accent {
border-color: #66d2ce;
}
.hover\:bg-accent-dark:hover {
background-color: #55b2b0;
}
.timeline-line {
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 4px;
background-color: #33334d;
transform: translateX(-50%);
}
@media (max-width: 768px) {
.timeline-line {
left: 1rem;
transform: none;
}
}
</style>
</head>
<body class="bg-[#1a1a2e] text-[#e0e0e0]">
<!-- 導航列 -->
<nav
class="fixed top-0 w-full z-50 bg-[#1a1a2e] bg-opacity-90 backdrop-blur-sm shadow-lg p-4"
>
<div class="container mx-auto flex justify-center space-x-8">
<a
href="#about"
class="text-white hover:text-accent font-bold transition-colors"
>關於我</a
>
<a
href="#projects"
class="text-white hover:text-accent font-bold transition-colors"
>專案經歷</a
>
<a
href="#skills"
class="text-white hover:text-accent font-bold transition-colors"
>技能</a
>
<a
href="#connect"
class="text-white hover:text-accent font-bold transition-colors"
>聯繫我</a
>
</div>
</nav>
<main class="container mx-auto px-4 mt-20">
<!-- 關於我區塊 -->
<section
id="about"
class="min-h-screen flex items-center justify-center py-20"
>
<div
class="flex flex-col md:flex-row items-center justify-center space-y-8 md:space-y-0 md:space-x-12 p-8 bg-[#21213e] rounded-xl shadow-2xl max-w-4xl mx-auto border border-[#33334d]"
>
<div
class="w-48 h-48 md:w-64 md:h-64 rounded-full overflow-hidden shadow-lg border-4 border-accent"
>
<!-- 圖片連結請替換為您的個人照片 URL -->
<img
src="https://avatars.githubusercontent.com/u/53119155?v=4"
alt="個人照片"
class="object-cover w-full h-full"
/>
</div>
<div class="text-center md:text-left">
<h1 class="text-4xl md:text-5xl font-bold mb-2 text-white">
陳昱誠
</h1>
<h2 class="text-xl md:text-2xl font-semibold text-accent mb-4">
前端軟體工程師
</h2>
<p class="text-lg leading-relaxed max-w-xl text-[#b0b0b0]">
我是一位充滿熱情的軟體工程師,專注於前端開發,並致力於打造高效、美觀且使用者體驗優良的網站應用程式。
</p>
<div class="flex justify-center md:justify-start space-x-6 mt-6">
<!-- 社群圖標 (使用內聯 SVG) -->
<a
href="https://github.com/raychen1996"
target="_blank"
class="text-white hover:text-accent transition-colors"
>
<svg
class="w-8 h-8"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.465-1.11-1.465-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.528 2.341 1.082 2.91.829.091-.645.356-1.085.645-1.336-2.22-.253-4.555-1.113-4.555-4.954 0-1.092.39-1.983 1.029-2.675-.103-.254-.446-1.266.098-2.653 0 0 .84-.27 2.75 1.022A9.636 9.636 0 0112 6.865c.85.004 1.701.114 2.516.332 1.91-1.292 2.75-1.022 2.75-1.022.546 1.387.202 2.4-.098 2.653.64.692 1.029 1.583 1.029 2.675 0 3.854-2.335 4.691-4.567 4.946.36.31.678.921.678 1.856 0 1.336-.012 2.418-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.523 2 12 2z"
clip-rule="evenodd"
/>
</svg>
</a>
<!-- LinkedIn 圖標 -->
<a
href="https://linkedin.com/in/ray-chen-13317a19a"
target="_blank"
class="text-white hover:text-accent transition-colors"
>
<svg
class="w-8 h-8"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"
/>
</svg>
</a>
<!-- 部落格圖標 (範例,可替換) -->
<a
href="https://ray-chen-docusaurus-vercel.vercel.app/"
target="_blank"
class="text-white hover:text-accent transition-colors"
>
<svg
class="w-8 h-8"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H4V5h16v14zm-4-4h-2V9h2v6zm-4 0h-2V9h2v6zm-4 0h-2V9h2v6z"
/>
</svg>
</a>
</div>
</div>
</div>
</section>
<!-- 專案經歷區塊 -->
<section id="projects" class="py-20">
<h2 class="text-4xl font-bold text-center mb-12 text-white">
專案經歷
</h2>
<div class="relative w-full mx-auto max-w-5xl">
<div class="timeline-line hidden md:block"></div>
<!-- 專案卡片 1 -->
<div
data-aos="fade-right"
class="flex justify-between items-center w-full my-8"
>
<div
class="order-1 w-full md:w-5/12 p-6 rounded-xl shadow-xl bg-[#21213e] border border-[#33334d]"
>
<h3 class="font-bold text-2xl text-accent mb-2">
屋況評估專家網
</h3>
<p class="text-sm text-gray-400 mb-4">
日期:2024 年 3 月 - 2024 年 6 月
</p>
<p class="mb-4">
在2024年地震頻繁的台灣,想要解決民眾對於房屋結構安全的疑慮,並提供一個方便的線上平台讓使用者能夠快速評估其房屋的結構安全性。我負責前端開發,使用
</p>
<!-- 圖片或影片區塊 -->
<div
class="w-full h-auto bg-[#1a1a2e] rounded-lg overflow-hidden my-4 border border-[#33334d]"
>
<img
src="https://ray-chen-docusaurus-vercel.vercel.app/assets/images/node-f96954adba7f28dbf67c5ad573e2567c.png"
alt="專案一圖片"
class="w-full h-full object-cover"
/>
</div>
<!-- 技術棧 -->
<div class="flex flex-wrap gap-2 mb-4">
<span
class="bg-[#33334d] text-accent text-sm px-3 py-1 rounded-full font-semibold"
>React</span
>
<span
class="bg-[#33334d] text-accent text-sm px-3 py-1 rounded-full font-semibold"
>Next.js</span
>
<span
class="bg-[#33334d] text-accent text-sm px-3 py-1 rounded-full font-semibold"
>MongoDB</span
>
</div>
<div class="flex space-x-4">
<a
href="https://homesecuritypro-web.vercel.app/"
target="_blank"
class="flex items-center space-x-2 text-white bg-accent px-4 py-2 rounded-full font-semibold hover:bg-accent-dark transition-colors"
>
<svg
class="w-5 h-5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
></path>
</svg>
<span>Live Demo</span>
</a>
<a
href="https://github.com/RayChen1996/homesecuritypro-web"
target="_blank"
class="flex items-center space-x-2 text-accent border border-accent px-4 py-2 rounded-full font-semibold hover:bg-accent hover:text-white transition-colors"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.465-1.11-1.465-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.528 2.341 1.082 2.91.829.091-.645.356-1.085.645-1.336-2.22-.253-4.555-1.113-4.555-4.954 0-1.092.39-1.983 1.029-2.675-.103-.254-.446-1.266.098-2.653 0 0 .84-.27 2.75 1.022A9.636 9.636 0 0112 6.865c.85.004 1.701.114 2.516.332 1.91-1.292 2.75-1.022 2.75-1.022.546 1.387.202 2.4-.098 2.653.64.692 1.029 1.583 1.029 2.675 0 3.854-2.335 4.691-4.567 4.946.36.31.678.921.678 1.856 0 1.336-.012 2.418-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.523 2 12 2z"
clip-rule="evenodd"
/>
</svg>
<span>GitHub</span>
</a>
</div>
</div>
</div>
<!-- 專案卡片 2 -->
<div
data-aos="fade-left"
class="flex justify-between items-center w-full my-8 md:justify-end"
>
<div
class="order-1 w-full md:w-5/12 p-6 rounded-xl shadow-xl bg-[#21213e] border border-[#33334d]"
>
<h3 class="font-bold text-2xl text-accent mb-2">旅館訂房網</h3>
<p class="text-sm text-gray-400 mb-4">日期:</p>
<p class="mb-4">
這是一個提供用戶線上訂房服務的網站。我負責前端開發,使用
React.js 建立響應式介面。
</p>
<!-- 圖片或影片區塊 -->
<div
class="w-full h-auto bg-[#1a1a2e] rounded-lg overflow-hidden my-4 border border-[#33334d]"
>
<img
src="https://ray-chen-docusaurus-vercel.vercel.app/assets/images/hotel-0c32036833b45c35a365dde691822183.png"
alt="專案二圖片"
class="w-full h-full object-cover"
/>
</div>
<!-- 技術棧 -->
<div class="flex flex-wrap gap-2 mb-4">
<span
class="bg-[#33334d] text-accent text-sm px-3 py-1 rounded-full font-semibold"
>React</span
>
</div>
<div class="flex space-x-4">
<a
href="https://hotel-web-three.vercel.app/"
target="_blank"
class="flex items-center space-x-2 text-white bg-accent px-4 py-2 rounded-full font-semibold hover:bg-accent-dark transition-colors"
>
<svg
class="w-5 h-5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
></path>
</svg>
<span>Live Demo</span>
</a>
<a
href="https://github.com/RayChen1996/hotel-web"
target="_blank"
class="flex items-center space-x-2 text-accent border border-accent px-4 py-2 rounded-full font-semibold hover:bg-accent hover:text-white transition-colors"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.465-1.11-1.465-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.528 2.341 1.082 2.91.829.091-.645.356-1.085.645-1.336-2.22-.253-4.555-1.113-4.555-4.954 0-1.092.39-1.983 1.029-2.675-.103-.254-.446-1.266.098-2.653 0 0 .84-.27 2.75 1.022A9.636 9.636 0 0112 6.865c.85.004 1.701.114 2.516.332 1.91-1.292 2.75-1.022 2.75-1.022.546 1.387.202 2.4-.098 2.653.64.692 1.029 1.583 1.029 2.675 0 3.854-2.335 4.691-4.567 4.946.36.31.678.921.678 1.856 0 1.336-.012 2.418-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.523 2 12 2z"
clip-rule="evenodd"
/>
</svg>
<span>GitHub</span>
</a>
</div>
</div>
</div>
<!-- 專案卡片 3 -->
<div
data-aos="fade-right"
class="flex justify-between items-center w-full my-8"
>
<div
class="order-1 w-full md:w-5/12 p-6 rounded-xl shadow-xl bg-[#21213e] border border-[#33334d]"
>
<h3 class="font-bold text-2xl text-accent mb-2">習慣養成平台</h3>
<p class="text-sm text-gray-400 mb-4">日期:</p>
<p class="mb-4">
這是一個幫助用戶養成良好習慣的應用程式。我負責前端開發,使用
React.js 建立響應式介面。
</p>
<!-- 圖片或影片區塊 -->
<div
class="w-full h-auto bg-[#1a1a2e] rounded-lg overflow-hidden my-4 border border-[#33334d]"
>
<img
src="https://ray-chen-docusaurus-vercel.vercel.app/assets/images/habit-aaa19a5707aaa3035c3a499e65001b10.png"
alt="專案三圖片"
class="w-full h-full object-cover"
/>
</div>
<!-- 技術棧 -->
<div class="flex flex-wrap gap-2 mb-4">
<span
class="bg-[#33334d] text-accent text-sm px-3 py-1 rounded-full font-semibold"
>React.js</span
>
</div>
<div class="flex space-x-4">
<a
href="https://habit-piggy-next-app.vercel.app/"
target="_blank"
class="flex items-center space-x-2 text-white bg-accent px-4 py-2 rounded-full font-semibold hover:bg-accent-dark transition-colors"
>
<svg
class="w-5 h-5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
></path>
</svg>
<span>Live Demo</span>
</a>
<a
href="https://github.com/RayChen1996/habit_piggy_next_app"
target="_blank"
class="flex items-center space-x-2 text-accent border border-accent px-4 py-2 rounded-full font-semibold hover:bg-accent hover:text-white transition-colors"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.465-1.11-1.465-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.528 2.341 1.082 2.91.829.091-.645.356-1.085.645-1.336-2.22-.253-4.555-1.113-4.555-4.954 0-1.092.39-1.983 1.029-2.675-.103-.254-.446-1.266.098-2.653 0 0 .84-.27 2.75 1.022A9.636 9.636 0 0112 6.865c.85.004 1.701.114 2.516.332 1.91-1.292 2.75-1.022 2.75-1.022.546 1.387.202 2.4-.098 2.653.64.692 1.029 1.583 1.029 2.675 0 3.854-2.335 4.691-4.567 4.946.36.31.678.921.678 1.856 0 1.336-.012 2.418-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.523 2 12 2z"
clip-rule="evenodd"
/>
</svg>
<span>GitHub</span>
</a>
</div>
</div>
</div>
<!-- 專案卡片 4 -->
<div
data-aos="fade-left"
class="flex justify-between items-center w-full my-8 md:justify-end"
>
<div
class="order-1 w-full md:w-5/12 p-6 rounded-xl shadow-xl bg-[#21213e] border border-[#33334d]"
>
<h3 class="font-bold text-2xl text-accent mb-2">Foodzero</h3>
<p class="text-sm text-gray-400 mb-4">日期:</p>
<p class="mb-4">這是一個在練習Tailwind搭配Nuxt.js的專案。</p>
<!-- 圖片或影片區塊 -->
<div
class="w-full h-auto bg-[#1a1a2e] rounded-lg overflow-hidden my-4 border border-[#33334d]"
>
<img
src="https://ray-chen-docusaurus-vercel.vercel.app/assets/images/foodzero-400f17de165e19623830b7ef8d1a0190.png"
alt="專案四圖片"
class="w-full h-full object-cover"
/>
</div>
<!-- 技術棧 -->
<div class="flex flex-wrap gap-2 mb-4">
<span
class="bg-[#33334d] text-accent text-sm px-3 py-1 rounded-full font-semibold"
>Nuxt.js</span
>
</div>
<div class="flex space-x-4">
<a
href="https://foodzero-web.vercel.app/"
target="_blank"
class="flex items-center space-x-2 text-white bg-accent px-4 py-2 rounded-full font-semibold hover:bg-accent-dark transition-colors"
>
<svg
class="w-5 h-5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
></path>
</svg>
<span>Live Demo</span>
</a>
<a
href="https://github.com/RayChen1996/FoodZero"
target="_blank"
class="flex items-center space-x-2 text-accent border border-accent px-4 py-2 rounded-full font-semibold hover:bg-accent hover:text-white transition-colors"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.465-1.11-1.465-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.528 2.341 1.082 2.91.829.091-.645.356-1.085.645-1.336-2.22-.253-4.555-1.113-4.555-4.954 0-1.092.39-1.983 1.029-2.675-.103-.254-.446-1.266.098-2.653 0 0 .84-.27 2.75 1.022A9.636 9.636 0 0112 6.865c.85.004 1.701.114 2.516.332 1.91-1.292 2.75-1.022 2.75-1.022.546 1.387.202 2.4-.098 2.653.64.692 1.029 1.583 1.029 2.675 0 3.854-2.335 4.691-4.567 4.946.36.31.678.921.678 1.856 0 1.336-.012 2.418-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.523 2 12 2z"
clip-rule="evenodd"
/>
</svg>
<span>GitHub</span>
</a>
</div>
</div>
</div>
<!-- 專案卡片 5 -->
<div
data-aos="fade-right"
class="flex justify-between items-center w-full my-8"
>
<div
class="order-1 w-full md:w-5/12 p-6 rounded-xl shadow-xl bg-[#21213e] border border-[#33334d]"
>
<h3 class="font-bold text-2xl text-accent mb-2">Architecture</h3>
<p class="text-sm text-gray-400 mb-4">日期:</p>
<p class="mb-4"></p>
<!-- 圖片或影片區塊 -->
<div
class="w-full h-auto bg-[#1a1a2e] rounded-lg overflow-hidden my-4 border border-[#33334d]"
>
<img
src="https://ray-chen-docusaurus-vercel.vercel.app/assets/images/architecture-2fc616c0786e971ca08411140fb9675e.png"
alt="專案五圖片"
class="w-full h-full object-cover"
/>
</div>
<!-- 技術棧 -->
<div class="flex flex-wrap gap-2 mb-4">
<span
class="bg-[#33334d] text-accent text-sm px-3 py-1 rounded-full font-semibold"
>Vue.js</span
>
</div>
<div class="flex space-x-4">
<a
href="https://architecture-studio-nuxt.vercel.app/?vercelToolbarCode=cg8gUzAQHkMPLGf"
target="_blank"
class="flex items-center space-x-2 text-white bg-accent px-4 py-2 rounded-full font-semibold hover:bg-accent-dark transition-colors"
>
<svg
class="w-5 h-5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
></path>
</svg>
<span>Live Demo</span>
</a>
<a
href="https://github.com/RayChen1996/architecture_studio_nuxt"
target="_blank"
class="flex items-center space-x-2 text-accent border border-accent px-4 py-2 rounded-full font-semibold hover:bg-accent hover:text-white transition-colors"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.465-1.11-1.465-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.528 2.341 1.082 2.91.829.091-.645.356-1.085.645-1.336-2.22-.253-4.555-1.113-4.555-4.954 0-1.092.39-1.983 1.029-2.675-.103-.254-.446-1.266.098-2.653 0 0 .84-.27 2.75 1.022A9.636 9.636 0 0112 6.865c.85.004 1.701.114 2.516.332 1.91-1.292 2.75-1.022 2.75-1.022.546 1.387.202 2.4-.098 2.653.64.692 1.029 1.583 1.029 2.675 0 3.854-2.335 4.691-4.567 4.946.36.31.678.921.678 1.856 0 1.336-.012 2.418-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.523 2 12 2z"
clip-rule="evenodd"
/>
</svg>
<span>GitHub</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- 技能區塊 -->
<section id="skills" class="py-20 text-center">
<h2 class="text-4xl font-bold mb-12 text-white">技能</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<!-- 程式語言 -->
<div
class="bg-[#21213e] p-8 rounded-xl shadow-xl border border-[#33334d]"
>
<h3 class="text-2xl font-bold mb-4 text-accent">程式語言</h3>
<div class="flex flex-wrap justify-center gap-4">
<span class="bg-[#33334d] px-4 py-2 rounded-full font-semibold"
>JavaScript</span
>
<span class="bg-[#33334d] px-4 py-2 rounded-full font-semibold"
>TypeScript</span
>
<span class="bg-[#33334d] px-4 py-2 rounded-full font-semibold"
>Java</span
>
</div>
</div>
<!-- 框架與工具 -->
<div
class="bg-[#21213e] p-8 rounded-xl shadow-xl border border-[#33334d]"
>
<h3 class="text-2xl font-bold mb-4 text-accent">框架與工具</h3>
<div class="flex flex-wrap justify-center gap-4">
<span class="bg-[#33334d] px-4 py-2 rounded-full font-semibold"
>React</span
>
<span class="bg-[#33334d] px-4 py-2 rounded-full font-semibold"
>Vue</span
>
<span class="bg-[#33334d] px-4 py-2 rounded-full font-semibold"
>Tailwind CSS</span
>
<span class="bg-[#33334d] px-4 py-2 rounded-full font-semibold"
>Git</span
>
<span class="bg-[#33334d] px-4 py-2 rounded-full font-semibold"
>Node.js</span
>
</div>
</div>
</div>
</section>
<!-- 聯絡區塊 -->
<section id="connect" class="py-20 text-center">
<h2 class="text-4xl font-bold mb-8 text-white">聯繫我</h2>
<p class="text-lg mb-8 text-[#b0b0b0]">
如果您對我的經歷感興趣,歡迎透過以下方式聯繫我!
</p>
<div class="flex justify-center space-x-8">
<!-- 連結圖標可與上方about me區塊共用 -->
<a
href="https://github.com/raychen1996"
target="_blank"
class="text-white hover:text-accent transition-colors"
>
<svg
class="w-12 h-12"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.465-1.11-1.465-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.528 2.341 1.082 2.91.829.091-.645.356-1.085.645-1.336-2.22-.253-4.555-1.113-4.555-4.954 0-1.092.39-1.983 1.029-2.675-.103-.254-.446-1.266.098-2.653 0 0 .84-.27 2.75 1.022A9.636 9.636 0 0112 6.865c.85.004 1.701.114 2.516.332 1.91-1.292 2.75-1.022 2.75-1.022.546 1.387.202 2.4-.098 2.653.64.692 1.029 1.583 1.029 2.675 0 3.854-2.335 4.691-4.567 4.946.36.31.678.921.678 1.856 0 1.336-.012 2.418-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.523 2 12 2z"
clip-rule="evenodd"
/>
</svg>
</a>
<!-- <a
href="https://your-blog.com"
target="_blank"
class="text-white hover:text-accent transition-colors"
>
<svg
class="w-12 h-12"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H4V5h16v14zm-4-4h-2V9h2v6zm-4 0h-2V9h2v6zm-4 0h-2V9h2v6z"
/>
</svg>
</a> -->
<a
href="https://linkedin.com/in/ray-chen-13317a19a"
target="_blank"
class="text-white hover:text-accent transition-colors"
>
<svg
class="w-12 h-12"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"
/>
</svg>
</a>
</div>
</section>
</main>
<footer class="text-center py-8 text-[#b0b0b0] text-sm mt-12">
<p>© 2025 陳昱誠. 版權所有.</p>
</footer>
<script src="https://unpkg.com/aos@2.3.4/dist/aos.js"></script>
<script>
AOS.init({
duration: 800,
once: true,
});
// 平滑滾動功能
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const targetId = this.getAttribute("href");
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80, // 考慮導航欄的高度
behavior: "smooth",
});
}
});
});
</script>
<script>
// 平滑滾動功能
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const targetId = this.getAttribute("href");
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80, // 考慮導航欄的高度
behavior: "smooth",
});
}
});
});
</script>
</body>
</html>