-
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 #7 from WIFI0000/personal-website
新增WIFI(李佳軒)的個人頁面
- Loading branch information
Showing
4 changed files
with
60 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,56 @@ | ||
import { Sample } from "../Sample" | ||
import WIFI from "../../assets/member/WIFI.gif" | ||
import { MemberArticleType, MemberCertificateType, MemberInternType, MemberParticipateType, MemberRaceExperienceType } from "../../type/MemberCertificateType" | ||
|
||
export const WIFIMemberPage = () => { | ||
const bio = "嗨伊,大家可以喊我「WIFI」就好,因為這個名字比較好記(*‘ v`*) 後面我再想想寫些什麼...(施工中)" | ||
const certificates: MemberCertificateType[] = [ | ||
{ | ||
title: "iPAS 資訊安全工程師-初級能力鑑定", | ||
datetime: "2023.06.21" | ||
}, | ||
{ | ||
title: "Microsoft Certified: Azure AI Fundamentals", | ||
datetime: "2024.06.24" | ||
} | ||
] | ||
const raceExperiences: MemberRaceExperienceType[] = [ | ||
{ | ||
title: "第28屆 Innoserve 資訊應用服務創新競賽 ", | ||
result: "資安創新技術組 第二名", | ||
datetime: "2023.11.04" | ||
}, | ||
{ | ||
title: "GICS 尋找資安女捷思", | ||
result: "資安闖天關 佳作", | ||
datetime: "2024.04.27" | ||
} | ||
] | ||
const participates: MemberParticipateType[] = [ | ||
{ | ||
title: "AIS3 情資運用與惡意程式分析", | ||
datetime: "2023.07.31" | ||
} | ||
] | ||
const internExperiences: MemberInternType[] = [] | ||
const journals: MemberArticleType[] = [] | ||
const conferences: MemberArticleType[] = [] | ||
const techConfs: MemberArticleType[] = [] | ||
return ( | ||
<Sample | ||
zhName="李佳軒" | ||
enName="Lee, Chia-Hsuan" | ||
avatar={WIFI} | ||
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