Skip to content

Commit

Permalink
add personal page
Browse files Browse the repository at this point in the history
  • Loading branch information
paulwang19 committed Jul 13, 2024
1 parent 192fc51 commit 3082944
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
Binary file added src/assets/member/PaulWang.jpg
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 @@ -22,6 +22,7 @@ import { Adb2MemberPage } from './member/2024/Adb2.tsx'
import { WIFIMemberPage } from './member/2024/WIFI.tsx'
import { YPPMemberPage } from './member/2024/ypp.tsx'
import { JasonMemberPage } from './member/2024/Jason.tsx'
import { PaulWangMemberPage } from './member/2024/PaulWang.tsx'


const router = createHashRouter(
Expand All @@ -35,6 +36,7 @@ const router = createHashRouter(
<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='/Member/2024/PaulWang' element={<PaulWangMemberPage />}></Route>
<Route path='/Alumni' element={<Alumni></Alumni>}></Route>
<Route path='/Partner' element={<Partner></Partner>}></Route>
<Route path='/Profile' element={<Profile></Profile>}></Route>
Expand Down
30 changes: 30 additions & 0 deletions src/member/2024/PaulWang.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { Sample } from "../Sample"
import PaulWang from "../../assets/member/PaulWang.jpg"
import { MemberArticleType, MemberCertificateType, MemberInternType, MemberParticipateType, MemberCompetitionExperienceType } from "../../type/MemberCertificateType"

export const PaulWangMemberPage = () => {
const bio = "大家好,我是王立翔,目前是個新手,會慢慢增添我的經歷,請大家多多指教!"
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="Wang, Li-Siang"
avatar={PaulWang}
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 @@ -142,7 +142,8 @@ export function Member(){
role: "碩零,資工碩士",
coAdvisor: '',
experience: "",
certificate: ""
certificate: "",
website: "/#/Member/2024/PaulWang"
},
{
key: '15',
Expand Down

0 comments on commit 3082944

Please sign in to comment.