because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(client): hide non-MVP nav items and quick actions

+4 -5
-1
apps/client/src/components/navLinks.ts
··· 8 8 { to: "/job-experience", label: "Job Experience" }, 9 9 { to: "/education", label: "Education" }, 10 10 { to: "/cvs", label: "My CVs" }, 11 - { to: "/organizations", label: "Organizations" }, 12 11 { to: "/vacancies", label: "Vacancies" }, 13 12 { to: "/profile", label: "Profile" }, 14 13 ];
+4 -4
apps/client/src/pages/DashboardPage.tsx
··· 135 135 <ViewTransitionLink to="/cvs"> 136 136 <Button variant="outline">Browse My CVs</Button> 137 137 </ViewTransitionLink> 138 - <ViewTransitionLink to="/applications/apply"> 139 - <Button variant="outline">Apply to Vacancy</Button> 138 + <ViewTransitionLink to="/job-experience"> 139 + <Button variant="outline">Job Experience</Button> 140 140 </ViewTransitionLink> 141 - <ViewTransitionLink to="/applications"> 142 - <Button variant="outline">My Applications</Button> 141 + <ViewTransitionLink to="/education"> 142 + <Button variant="outline">Education</Button> 143 143 </ViewTransitionLink> 144 144 </div> 145 145 </div>