Skip to content

Commit

Permalink
Merge pull request #17 from han20011222/personal-website
Browse files Browse the repository at this point in the history
Add personal page
  • Loading branch information
ntut-xuan authored Jul 10, 2024
2 parents 3458b43 + 51eaa85 commit fe16c12
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 1 deletion.
Binary file added src/assets/member/jason.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { UriahMemberPage } from './member/2023/Uriah.tsx'
import { RyanMemberPage } from './member/2022/Ryan.tsx'
import { WIFIMemberPage } from './member/2024/WIFI.tsx'
import { YPPMemberPage } from './member/2024/ypp.tsx'
import { JasonMemberPage } from './member/2024/Jason.tsx'


const router = createHashRouter(
Expand All @@ -31,6 +32,7 @@ const router = createHashRouter(
<Route path='/Member/2022/Ryan' element={<RyanMemberPage />}></Route>
<Route path='/Member/2024/WIFI' element={<WIFIMemberPage />}></Route>
<Route path='/Member/2024/ypp' element={<YPPMemberPage />}></Route>
<Route path='/Member/2024/Jason' element={<JasonMemberPage />}></Route>
<Route path='/Alumni' element={<Alumni></Alumni>}></Route>
<Route path='/Partner' element={<Partner></Partner>}></Route>
<Route path='/Profile' element={<Profile></Profile>}></Route>
Expand Down
37 changes: 37 additions & 0 deletions src/member/2024/Jason.tsx
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>
)
}

3 changes: 2 additions & 1 deletion src/page/Member.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ export function Member(){
role: "碩零,資安碩士",
coAdvisor: '',
experience: "",
certificate: ""
certificate: "",
website: "/#/Member/2024/Jason"
},
{
key: '11',
Expand Down

0 comments on commit fe16c12

Please sign in to comment.