diff --git a/src/components/PatientBanner.tsx b/src/components/PatientBanner.tsx new file mode 100644 index 0000000..a3831c8 --- /dev/null +++ b/src/components/PatientBanner.tsx @@ -0,0 +1,189 @@ +import { Download, Mail, Linkedin } from 'lucide-react' +import { patient } from '@/data/patient' +import { useScrollCondensation } from '@/hooks/useScrollCondensation' + +export function PatientBanner() { + const { isCondensed, sentinelRef } = useScrollCondensation({ threshold: 100 }) + + return ( + <> +