52ee98d8aa
- Add OSCE score (80%) to MPharm inline details via educationExtras data - Show research project with full description (Drug delivery & cocrystals, 75.1%) - Display A-level grades as Mathematics (A*) · Chemistry (B) · Politics (C) - Include Mary Seacole programme detail from educationExtras - Import and use educationExtras data for dynamic inline content - Add osceScore field to EducationExtra type - Each entry clickable to open detail panel, hover border shift intact Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
739 B
TypeScript
19 lines
739 B
TypeScript
import type { EducationExtra } from '@/types/pmr'
|
|
|
|
export const educationExtras: EducationExtra[] = [
|
|
{
|
|
documentId: 'doc-mpharm',
|
|
extracurriculars: [
|
|
'President of UEA Pharmacy Society',
|
|
'Secretary & Vice-President of UEA Ultimate Frisbee',
|
|
'Publicity Officer for UEA Alzheimer\'s Society',
|
|
],
|
|
researchDescription: 'Final year research project investigating cocrystal formation for improved drug delivery properties. Awarded Distinction grade (75.1%).',
|
|
osceScore: '80%',
|
|
},
|
|
{
|
|
documentId: 'doc-mary-seacole',
|
|
programmeDetail: 'Formal NHS leadership qualification providing theoretical grounding in healthcare leadership approaches, change management, and system-level thinking.',
|
|
},
|
|
]
|