-
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.
Merge pull request #85 from robert-liao/personal-website
Add personal page
- Loading branch information
Showing
4 changed files
with
46 additions
and
2 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,42 @@ | ||
import { Sample } from "../Sample"; | ||
import Uriah from "../../assets/member/robertliao.jpg"; | ||
import { | ||
MemberArticleType, | ||
MemberCertificateType, | ||
MemberInternType, | ||
MemberParticipateType, | ||
MemberCompetitionExperienceType, | ||
} from "../../type/MemberCertificateType"; | ||
|
||
export const RobertLiaoMemberPage = () => { | ||
const bio = "哈囉,我是哲霈。"; | ||
const certificates: MemberCertificateType[] = []; | ||
const raceExperiences: MemberCompetitionExperienceType[] = []; | ||
const participates: MemberParticipateType[] = []; | ||
const internExperiences: MemberInternType[] = [ | ||
{ | ||
company: "海韻智能股份有限公司", | ||
info: "工具開發、設備架設、韌體維護", | ||
datetime: "2022.03 - 2022.06", | ||
}, | ||
]; | ||
const journals: MemberArticleType[] = []; | ||
const conferences: MemberArticleType[] = []; | ||
const techConfs: MemberArticleType[] = []; | ||
return ( | ||
<Sample | ||
zhName="廖哲霈" | ||
enName="Robert Liao" | ||
avatar={Uriah} | ||
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