-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
82 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import { Sample } from "../Sample" | ||
import Rock from "../../assets/member/Rock.jpg" | ||
import { MemberArticleType, MemberCertificateType, MemberInternType, MemberParticipateType, MemberCompetitionExperienceType } from "../../type/MemberCertificateType" | ||
export const RockMemberPage = () => { | ||
const bio = "Hi, I'm Rock. 以前大學讀外語系,碩士鬼轉資安,正在練功累積實力,希望大家多多交流指教,想練英文或日文也可以隨時來找我聊聊!" | ||
const certificates: MemberCertificateType[] = [ | ||
{ | ||
title: "iPAS 資訊安全工程師-初級能力鑑定", | ||
datetime: "2023/07/31" | ||
}, | ||
{ | ||
title: "Google Cybersecurity Professional Certificate", | ||
datetime: "2023/12/15" | ||
}, | ||
{ | ||
title: "IELTS 6.5", | ||
datetime: "2023/06/21" | ||
}, | ||
{ | ||
title: "JLPT N1", | ||
datetime: "2022/01/13" | ||
}, | ||
] | ||
|
||
|
||
const competitionExperiences: MemberCompetitionExperienceType[] = [ | ||
{ | ||
title: "picoCTF 2023", | ||
result: "排名: N/A", | ||
datetime: "2023" | ||
} | ||
] | ||
const participates: MemberParticipateType[] = [ | ||
{ | ||
title: "CYBERSEC 2024 臺灣資安大會", | ||
datetime: "2024/05/14-2024/05/16" | ||
} | ||
] | ||
const internExperiences: MemberInternType[] = [ | ||
{ | ||
company: "叡揚資訊股份有限公司", | ||
info: "資安實習生", | ||
datetime: "2024.10 - now" | ||
}, | ||
{ | ||
company: "華電聯網股份有限公司", | ||
info: "軟體中心實習生", | ||
datetime: "2024.7 - 2024.9" | ||
}, | ||
{ | ||
company: "財團法人資訊工業策進會", | ||
info: "資安實習生", | ||
datetime: "2023.7 - 2023.9" | ||
} | ||
] | ||
|
||
|
||
const journals: MemberArticleType[] = [] | ||
const conferences: MemberArticleType[] = [] | ||
const techConfs: MemberArticleType[] = [] | ||
return ( | ||
<Sample | ||
zhName="李宜鴻" | ||
enName="Li, Yi-Hong" | ||
avatar={Rock} | ||
institutes={["國立臺北科技大學 資訊安全碩士學位學程 碩二"]} | ||
bio={bio} | ||
experiences={competitionExperiences} | ||
certificates={certificates} | ||
participates={participates} | ||
intern={internExperiences} | ||
journals={journals} | ||
conferences={conferences} | ||
techConfs={techConfs} | ||
></Sample> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters