File tree Expand file tree Collapse file tree 8 files changed +128
-2
lines changed Expand file tree Collapse file tree 8 files changed +128
-2
lines changed Original file line number Diff line number Diff line change 3
3
< div class ="container ">
4
4
< div class ="navbar-brand ">
5
5
< a href ="{{ '/' | relative_url }} " class ="site-logo ">
6
- < i class =" fas fa-code " > </ i >
6
+ < img src =" {{ '/assets/images/avatar.svg' | relative_url }} " alt =" Kevin Park " class =" logo-avatar " >
7
7
< span > {{ site.title }}</ span >
8
8
</ a >
9
9
</ div >
Original file line number Diff line number Diff line change 10
10
{% seo %}
11
11
12
12
<!-- Favicon -->
13
- < link rel ="icon " type ="image/x-icon " href ="/assets/favicon.ico ">
13
+ < link rel ="icon " type ="image/svg+xml " href ="/assets/images/favicon.svg ">
14
+ < link rel ="icon " type ="image/x-icon " href ="/assets/images/favicon.ico ">
15
+ < link rel ="apple-touch-icon " sizes ="180x180 " href ="/assets/images/apple-touch-icon.png ">
16
+ < link rel ="manifest " href ="/assets/images/site.webmanifest ">
14
17
15
18
<!-- Fonts -->
16
19
< link href ="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap " rel ="stylesheet ">
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ subtitle: 개발자 Kevin Park에 대해 알아보세요
5
5
permalink : /about/
6
6
---
7
7
8
+ <div class =" about-hero " >
9
+ <img src =" /assets/images/avatar.svg " alt =" Kevin Park " class =" about-avatar-large " >
10
+ </div >
11
+
8
12
안녕하세요! 저는 ** Kevin Park** 입니다. 실무에서 쌓은 개발 경험과 새로 배운 기술들을 이 블로그를 통해 공유하고 있습니다.
9
13
10
14
## 🚀 개발 여정
Original file line number Diff line number Diff line change @@ -206,6 +206,21 @@ a:hover {
206
206
text-decoration : none;
207
207
}
208
208
209
+ .logo-avatar {
210
+ width : 40px ;
211
+ height : 40px ;
212
+ border-radius : 50% ;
213
+ border : 2px solid var (--primary-color );
214
+ transition : var (--transition );
215
+ background : var (--background );
216
+ padding : 2px ;
217
+ }
218
+
219
+ .logo-avatar : hover {
220
+ transform : scale (1.1 );
221
+ box-shadow : 0 4px 15px var (--shadow );
222
+ }
223
+
209
224
.navbar-menu {
210
225
display : flex;
211
226
align-items : center;
@@ -367,6 +382,28 @@ a:hover {
367
382
margin : 0 auto;
368
383
}
369
384
385
+ /* About Page Hero */
386
+ .about-hero {
387
+ text-align : center;
388
+ margin-bottom : var (--spacing-2xl );
389
+ }
390
+
391
+ .about-avatar-large {
392
+ width : 120px ;
393
+ height : 120px ;
394
+ border-radius : 50% ;
395
+ border : 4px solid var (--primary-color );
396
+ background : var (--background );
397
+ padding : 4px ;
398
+ transition : var (--transition );
399
+ box-shadow : 0 8px 25px var (--shadow );
400
+ }
401
+
402
+ .about-avatar-large : hover {
403
+ transform : scale (1.05 );
404
+ box-shadow : 0 12px 35px var (--shadow );
405
+ }
406
+
370
407
/* Post Meta */
371
408
.post-meta {
372
409
display : flex;
@@ -719,6 +756,26 @@ a:hover {
719
756
}
720
757
721
758
/* About Widget */
759
+ .about-avatar {
760
+ text-align : center;
761
+ margin-bottom : var (--spacing-md );
762
+ }
763
+
764
+ .avatar-image {
765
+ width : 80px ;
766
+ height : 80px ;
767
+ border-radius : 50% ;
768
+ border : 3px solid var (--primary-color );
769
+ transition : var (--transition );
770
+ background : var (--background );
771
+ padding : 3px ;
772
+ }
773
+
774
+ .avatar-image : hover {
775
+ transform : scale (1.05 );
776
+ box-shadow : 0 8px 25px var (--shadow );
777
+ }
778
+
722
779
.about-content p {
723
780
color : var (--text-secondary );
724
781
line-height : 1.6 ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Real Coding Blog" ,
3
+ "short_name" : " RealCoding" ,
4
+ "description" : " 실무에서 배운 개발 노하우와 기술적 인사이트를 공유합니다" ,
5
+ "icons" : [
6
+ {
7
+ "src" : " /assets/images/android-chrome-192x192.png" ,
8
+ "sizes" : " 192x192" ,
9
+ "type" : " image/png"
10
+ },
11
+ {
12
+ "src" : " /assets/images/android-chrome-512x512.png" ,
13
+ "sizes" : " 512x512" ,
14
+ "type" : " image/png"
15
+ }
16
+ ],
17
+ "theme_color" : " #667eea" ,
18
+ "background_color" : " #0f1419" ,
19
+ "display" : " standalone" ,
20
+ "start_url" : " /" ,
21
+ "scope" : " /"
22
+ }
Original file line number Diff line number Diff line change @@ -68,6 +68,9 @@ <h3 class="post-title">
68
68
< div class ="sidebar-widget about-widget ">
69
69
< h3 > About</ h3 >
70
70
< div class ="about-content ">
71
+ < div class ="about-avatar ">
72
+ < img src ="{{ '/assets/images/avatar.svg' | relative_url }} " alt ="Kevin Park " class ="avatar-image ">
73
+ </ div >
71
74
< p > 실무 중심의 개발 이야기를 기록합니다. 문제 해결 과정과 배운 점들을 공유하며, 다른 개발자들에게 도움이 되고자 합니다.</ p >
72
75
< a href ="/about " class ="about-link "> 더 알아보기 →</ a >
73
76
</ div >
You can’t perform that action at this time.
0 commit comments