Skip to content

Commit

Permalink
Merge pull request #83 from Kuo-1025/personal-website
Browse files Browse the repository at this point in the history
create JunAn personal website
  • Loading branch information
ntut-xuan authored Jan 6, 2025
2 parents bc63e4d + 4e174e7 commit 6c02a59
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import { CHWMemberPage } from "./member/2023/CHW.tsx";
import { RavinMemberPage } from "./member/2023/Ravin.tsx";
import { KunjiliMemberPage } from "./member/2022/Kunjili.tsx";
import { CliffMemberPage } from "./member/2022/Cliff.tsx";
import { JunAnMemberPage } from "./member/2025/JunAn.tsx";

const router = createHashRouter(
createRoutesFromElements(
Expand Down Expand Up @@ -78,6 +79,7 @@ const router = createHashRouter(
element={<KunjiliMemberPage />}
></Route>
<Route path="/Member/2022/Cliff" element={<CliffMemberPage />}></Route>
<Route path="/Member/2025/JunAn" element={ <JunAnMemberPage />}></Route>
<Route path="/Alumni" element={<Alumni></Alumni>}></Route>
<Route path="/Partner" element={<Partner></Partner>}></Route>
<Route path="/Profile" element={<Profile></Profile>}></Route>
Expand Down
59 changes: 59 additions & 0 deletions src/member/2025/JunAn.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import { Sample } from "../Sample"
import { MemberArticleType, MemberCertificateType, MemberInternType, MemberParticipateType, MemberCompetitionExperienceType } from "../../type/MemberCertificateType"

export const JunAnMemberPage = () => {
const bio = "我是郭竣安。"
const certificates: MemberCertificateType[] = []
const competitionExperiences: MemberCompetitionExperienceType[] = [
{
title: "AIS3 Pre-exam CTF 2024",
result: "隊名:4153_nu11ptr,排名 : 60/493",
datetime: "2024.05.25 ~ 2024.05.27"
},
]
const participates: MemberParticipateType[] = [
{
title: "第九屆臺灣好厲駭 高階學員培訓",
datetime: "2024.08 ~ now"
},
{
title: "HITCON CMT 2024",
datetime: "2024.08.23 ~ 2024.08.24"
},
{
title: "2024 AIS3 新型態資安暑期課程",
datetime: "2024.07.29 ~ 2024.08.04"
},
{
title: "CYBERSEC 2024 臺灣資安大會",
datetime: "2024.05.14 ~ 2024.05.16"
},
{
title: "DEVCORE CONFERENCE 2024",
datetime: "2024.03.16"
},
{
title: "HITCOM CMT 2023",
datetime: "2023.08.18 ~ 2023.08.19"
}
]
const internExperiences: MemberInternType[] = []
const journals: MemberArticleType[] = []
const conferences: MemberArticleType[] = []
const techConfs: MemberArticleType[] = []
return (
<Sample
zhName="郭竣安"
enName="Kuo, Chun-An"
institutes={["國立臺北科技大學 資訊安全碩士學位學程 碩零"]}
bio={bio}
experiences={competitionExperiences}
certificates={certificates}
participates={participates}
intern={internExperiences}
journals={journals}
conferences={conferences}
techConfs={techConfs}
></Sample>
)
}
10 changes: 10 additions & 0 deletions src/page/Member.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,16 @@ export function Member(){
experience: "",
certificate: "",
website: ""
},
{
key: '20',
name: "郭竣安",
joinDate: "2025.01",
role: "碩零,資安碩士",
coAdvisor: '',
experience: "",
certificate: "",
website: "/#/member/2025/JunAn"
}
]
const consultantUserTableItem = [
Expand Down

0 comments on commit 6c02a59

Please sign in to comment.