forked from is1ab/is1ab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Jason Huang
authored and
Jason Huang
committed
Jul 10, 2024
1 parent
f2d093e
commit 51eaa85
Showing
4 changed files
with
41 additions
and
1 deletion.
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,37 @@ | ||
import { Sample } from "../Sample" | ||
import Jason from "../../assets/member/jason.png" | ||
import { MemberArticleType, MemberCertificateType, MemberInternType, MemberParticipateType, MemberCompetitionExperienceType } from "../../type/MemberCertificateType" | ||
|
||
export const JasonMemberPage = () => { | ||
const bio = "蟹man!!我什麼都沒有,但我會加油慢慢更新的,謝謝!" | ||
const certificates: MemberCertificateType[] = [ | ||
|
||
] | ||
const competitionExperiences: MemberCompetitionExperienceType[] = [ | ||
|
||
] | ||
const participates: MemberParticipateType[] = [ | ||
|
||
] | ||
const internExperiences: MemberInternType[] = [] | ||
const journals: MemberArticleType[] = [] | ||
const conferences: MemberArticleType[] = [] | ||
const techConfs: MemberArticleType[] = [] | ||
return ( | ||
<Sample | ||
zhName="黃廷翰" | ||
enName="Huang, Ting-Han" | ||
avatar={Jason} | ||
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