-
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 pull request #11 from yPin9/personal-website
add Huang Yi-Ping's personal page
- Loading branch information
Showing
4 changed files
with
42 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 ypp from "../../assets/member/ypp.png" | ||
import { MemberArticleType, MemberCertificateType, MemberInternType, MemberParticipateType, MemberRaceExperienceType } from "../../type/MemberCertificateType" | ||
|
||
export const YPPMemberPage = () => { | ||
const bio = "目前什麼都沒有" | ||
const certificates: MemberCertificateType[] = [ | ||
|
||
] | ||
const raceExperiences: MemberRaceExperienceType[] = [ | ||
|
||
] | ||
const participates: MemberParticipateType[] = [ | ||
|
||
] | ||
const internExperiences: MemberInternType[] = [] | ||
const journals: MemberArticleType[] = [] | ||
const conferences: MemberArticleType[] = [] | ||
const techConfs: MemberArticleType[] = [] | ||
return ( | ||
<Sample | ||
zhName="黃奕評" | ||
enName="Huang, Yi-Ping" | ||
avatar={ypp} | ||
institutes={["國立臺北科技大學 資訊安全碩士學位學程 碩零"]} | ||
bio={bio} | ||
experiences={raceExperiences} | ||
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