diff --git a/src/components/tiles/PatientSummaryTile.tsx b/src/components/tiles/PatientSummaryTile.tsx index b9bdaee..1e76f64 100644 --- a/src/components/tiles/PatientSummaryTile.tsx +++ b/src/components/tiles/PatientSummaryTile.tsx @@ -1,6 +1,5 @@ import React from 'react' import { Card, CardHeader } from '../Card' -import { personalStatement } from '@/data/profile' export function PatientSummaryTile() { // Key statistics from CV_v4.md @@ -47,6 +46,21 @@ export function PatientSummaryTile() { color: 'var(--text-primary)', } + // Split profile text into structured sections with bold key phrases + const renderProfileWithHierarchy = () => { + return ( +
+ Healthcare leader combining clinical pharmacy expertise with proficiency in{' '} + Python, SQL, and data analytics, self-taught over the past decade through a drive to find root causes in data and build the most efficient solutions to complex problems. Currently{' '} + leading population health analytics for NHS Norfolk & Waveney ICB, serving a population of 1.2 million. Experienced in working with messy, real-world prescribing data at scale to deliver actionable insights—from{' '} + financial scenario modelling and pharmaceutical rebate negotiation to{' '} + algorithm design and population-level pathway development. Proven track record of identifying and prioritising efficiency programmes worth{' '} + £14.6M+ through automated, data-driven analysis. Skilled at translating complex clinical, financial, and analytical requirements into clear recommendations for{' '} + executive stakeholders. +
+ ) + } + return ( @@ -61,8 +75,8 @@ export function PatientSummaryTile() { ))} - {/* Profile text with improved readability */} -
{personalStatement}
+ {/* Profile text with visual hierarchy through bold key phrases */} + {renderProfileWithHierarchy()}
) }