From 6c26518806aa9677b437cd8c951f6c9139c72ad1 Mon Sep 17 00:00:00 2001 From: A Charlwood Date: Fri, 13 Feb 2026 23:11:47 +0000 Subject: [PATCH] US-007: Create education extras data file Add educationExtras.ts with expanded detail for education entries: - MPharm: extracurriculars and research description from CV - Mary Seacole: programme detail about leadership qualification Co-Authored-By: Claude Sonnet 4.5 --- src/data/educationExtras.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/data/educationExtras.ts diff --git a/src/data/educationExtras.ts b/src/data/educationExtras.ts new file mode 100644 index 0000000..67b00fa --- /dev/null +++ b/src/data/educationExtras.ts @@ -0,0 +1,17 @@ +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%).', + }, + { + documentId: 'doc-mary-seacole', + programmeDetail: 'Formal NHS leadership qualification providing theoretical grounding in healthcare leadership approaches, change management, and system-level thinking.', + }, +]