Skip to content

Commit

Permalink
Merge pull request #11 from yPin9/personal-website
Browse files Browse the repository at this point in the history
add Huang Yi-Ping's personal page
  • Loading branch information
ntut-xuan authored Jul 10, 2024
2 parents 19e3c97 + 1ba3cfb commit 06c8af7
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 1 deletion.
Binary file added src/assets/member/ypp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import { Rule } from './page/Rule.tsx'
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'


const router = createHashRouter(
createRoutesFromElements(
Expand All @@ -28,6 +30,7 @@ const router = createHashRouter(
<Route path='/Member/2023/Uriah' element={<UriahMemberPage />}></Route>
<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='/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/ypp.tsx
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>
)
}

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

0 comments on commit 06c8af7

Please sign in to comment.