From 661dba4b75ad1356ee27b46945c28c31eacb0cbf Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Tue, 17 Feb 2026 03:11:47 +0000 Subject: [PATCH] audit: verify patient.ts against reference documents - Address corrected from 'Norwich, NR1' to 'Norwich, UK' to match CV - Created References/unverified-content.md to track audit findings - Flagged retained-but-unverifiable personal data (DOB, GPhC number, LinkedIn slug) - All other fields verified against CV_v4.md --- References/unverified-content.md | 38 ++++++++++++++++++++++++++++++++ src/data/patient.ts | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 References/unverified-content.md diff --git a/References/unverified-content.md b/References/unverified-content.md new file mode 100644 index 0000000..2d012cc --- /dev/null +++ b/References/unverified-content.md @@ -0,0 +1,38 @@ +# Unverified Content Log + +Compiled during Phase 2 content audit. Each entry records content that could not be verified against reference documents. + +## Removed Content + +_Content removed from the website because it could not be verified against any reference document._ + +| File | Content | Reason | Action | +|------|---------|--------|--------| +| — | — | — | — | + +## Flagged But Retained + +_Content not in reference documents but retained as personal data or UI elements (not factual claims)._ + +| File | Content | Reason | +|------|---------|--------| +| `src/data/patient.ts` | `dob: '14/02/1993'` | Personal data — not a career claim, owner-provided | +| `src/data/patient.ts` | `nhsNumber: '221 181 0'` (GPhC reg number) | Professional registration number — verifiable via GPhC register but not in reference docs | +| `src/data/patient.ts` | `linkedin: 'linkedin.com/in/andycharlwood'` | Personal account URL — secondary ref mentions LinkedIn but not exact slug | +| `src/data/patient.ts` | `badge: 'Open to opportunities'` | UI status element — current preference, not a factual claim | + +## Content Corrections + +_Content modified to better align with reference documents._ + +| File | Original | Corrected | Source | +|------|----------|-----------|--------| +| `src/data/patient.ts` | `address: 'Norwich, NR1'` | `address: 'Norwich, UK'` | CV_v4.md: "Norwich, UK" | + +## Missed Opportunities + +_Skills, projects, achievements, or goals from reference documents not yet represented on the website._ + +| Source | Content | Potential Use | +|--------|---------|---------------| +| — | — | — | diff --git a/src/data/patient.ts b/src/data/patient.ts index b1cffff..059d6f9 100644 --- a/src/data/patient.ts +++ b/src/data/patient.ts @@ -6,7 +6,7 @@ export const patient: Patient = { dob: '14/02/1993', nhsNumber: '221 181 0', nhsNumberTooltip: 'GPhC Registration Number', - address: 'Norwich, NR1', + address: 'Norwich, UK', phone: '07795553088', email: 'andy@charlwood.xyz', linkedin: 'linkedin.com/in/andycharlwood',