-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into personal-website
- Loading branch information
Showing
5 changed files
with
53 additions
and
5 deletions.
There are no files selected for viewing
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
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,44 @@ | ||
import { Sample } from "../Sample" | ||
|
||
import { MemberArticleType, MemberCertificateType, MemberInternType, MemberParticipateType, MemberCompetitionExperienceType } from "../../type/MemberCertificateType" | ||
|
||
export const JoeMemberPage = () => { | ||
const bio = "嗨,各位好,我是楊閔恩,可以叫我Joe,目前就讀於國立臺北科技大學資訊工程學系碩士班,研究方向為資訊安全,目前專注於Web的部分,希望未來能在這個領域有所貢獻。" | ||
const certificates: MemberCertificateType[] = [] | ||
const competitionExperiences: MemberCompetitionExperienceType[] = [] | ||
const participates: MemberParticipateType[] = [ | ||
{ | ||
title: "NISRA Enlightened 2021", | ||
datetime: "2021.08.09" | ||
}, | ||
{ | ||
title: "HITCON Carnival 2023", | ||
datetime: "2023.11.14" | ||
}, | ||
{ | ||
title: "CYBERSEC 2024", | ||
datetime: "2024.05.14" | ||
} | ||
] | ||
const internExperiences: MemberInternType[] = [] | ||
const journals: MemberArticleType[] = [] | ||
const conferences: MemberArticleType[] = [] | ||
const techConfs: MemberArticleType[] = [] | ||
return ( | ||
<Sample | ||
zhName="楊閔恩" | ||
enName="Yang, Min-En" | ||
|
||
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
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