Rename all PDFs to snake_case and update code references

This commit is contained in:
2026-04-18 17:53:39 -04:00
parent 3158e62d62
commit 89a510f695
17 changed files with 40 additions and 16 deletions
+1 -1
View File
@@ -2,6 +2,6 @@
"success": true, "success": true,
"clones": [], "clones": [],
"duplicatedLines": 0, "duplicatedLines": 0,
"totalLines": 776, "totalLines": 847,
"percentage": 0 "percentage": 0
} }
+1 -1
View File
@@ -1,3 +1,3 @@
{ {
"timestamp": "2026-04-18T21:05:05.983Z" "timestamp": "2026-04-18T21:53:13.347Z"
} }
+1 -1
View File
@@ -1,3 +1,3 @@
{ {
"timestamp": "2026-04-18T21:05:07.205Z" "timestamp": "2026-04-18T21:53:14.655Z"
} }
+26 -1
View File
@@ -225,7 +225,32 @@
} }
], ],
"trend": "stable" "trend": "stable"
},
"src/components/NavBar.tsx": {
"latest": {
"commit": "0184e5c",
"timestamp": "2026-04-18T21:09:03.647Z",
"mi": 47.4,
"cognitive": 0,
"nesting": 2,
"lines": 38,
"maxCyclomatic": 1,
"entropy": 4
},
"history": [
{
"commit": "0184e5c",
"timestamp": "2026-04-18T21:09:03.647Z",
"mi": 47.4,
"cognitive": 0,
"nesting": 2,
"lines": 38,
"maxCyclomatic": 1,
"entropy": 4
}
],
"trend": "stable"
} }
}, },
"capturedAt": "2026-04-18T21:04:17.273Z" "capturedAt": "2026-04-18T21:09:12.404Z"
} }
+1 -1
View File
@@ -2,5 +2,5 @@
"files": {}, "files": {},
"turnCycles": 0, "turnCycles": 0,
"maxCycles": 3, "maxCycles": 3,
"lastUpdated": "2026-04-18T21:05:08.749Z" "lastUpdated": "2026-04-18T21:53:14.656Z"
} }
+7 -8
View File
@@ -9,25 +9,25 @@ const certifications: CredentialCard[] = [
{ {
title: 'Active PA LCPC', title: 'Active PA LCPC',
description: 'Pennsylvania License PC014692', description: 'Pennsylvania License PC014692',
fileHref: '/docs/PC014692 (1).pdf', fileHref: '/docs/pa_license.pdf',
fileLabel: 'Download PDF', fileLabel: 'Download PDF',
}, },
{ {
title: 'Active MD LCPC', title: 'Active MD LCPC',
description: 'Maryland License Certificate', description: 'Maryland License Certificate',
fileHref: '/docs/ActiveMDLCPC.pdf', fileHref: '/docs/md_license.pdf',
fileLabel: 'Download PDF', fileLabel: 'Download PDF',
}, },
{ {
title: 'ACA Membership', title: 'ACA Membership',
description: 'American Counseling Association member.', description: 'American Counseling Association member.',
fileHref: '/docs/ACA Membership.pdf', fileHref: '/docs/aca_membership.pdf',
fileLabel: 'Download PDF', fileLabel: 'Download PDF',
}, },
{ {
title: 'Certified Nature-Informed Therapist', title: 'Certified Nature-Informed Therapist',
description: 'Certification in nature-informed therapeutic approaches.', description: 'Certification in nature-informed therapeutic approaches.',
fileHref: '/docs/Certified Nature-Informed Therapist.pdf', fileHref: '/docs/cnit_certification.pdf',
fileLabel: 'Download PDF', fileLabel: 'Download PDF',
}, },
] ]
@@ -36,14 +36,13 @@ const presentations: CredentialCard[] = [
{ {
title: 'Presentations & Proposals', title: 'Presentations & Proposals',
description: 'NIT for SUD', description: 'NIT for SUD',
fileHref: '/docs/NIT for SUD.pdf', fileHref: '/docs/nit_for_sud.pdf',
fileLabel: 'Download / Open', fileLabel: 'Download / Open',
}, },
{ {
title: '2026 ACA Preview-Call for Proposals', title: '2026 ACA Preview-Call for Proposals',
description: 'Conference proposal preview.', description: 'Conference proposal preview.',
fileHref: fileHref: '/docs/aca_2026_proposal.pdf',
'/docs/Preview - Call for Proposals - 2026 ACA Annual Conference & Expo.pdf',
fileLabel: 'Download / Open', fileLabel: 'Download / Open',
}, },
] ]
@@ -68,7 +67,7 @@ export default function Credentials() {
Credentials & Publications Credentials & Publications
</h2> </h2>
<p className="mt-2 text-slate-700"> <p className="mt-2 text-slate-700">
Downloadable documents linked from the sites docs folder. Downloadable documents linked from the site's docs folder.
</p> </p>
<div className="mt-10 space-y-10"> <div className="mt-10 space-y-10">
+1 -1
View File
@@ -109,7 +109,7 @@ export default function Experience() {
<div className="mt-6 flex items-center justify-between text-xs text-slate-500"> <div className="mt-6 flex items-center justify-between text-xs text-slate-500">
<p>Professional summary</p> <p>Professional summary</p>
<a <a
href="/docs/Peter's Resume.pdf" href="/docs/resume.pdf"
className="text-emerald-700 hover:text-emerald-800 hover:underline" className="text-emerald-700 hover:text-emerald-800 hover:underline"
target="_blank" target="_blank"
rel="noreferrer" rel="noreferrer"
+2 -2
View File
@@ -14,14 +14,14 @@ const presentations: Presentation[] = [
title: 'Presentation 1', title: 'Presentation 1',
description: 'Counseling skills demonstration and clinical case study.', description: 'Counseling skills demonstration and clinical case study.',
icon: 'education', icon: 'education',
href: '/docs/Presentation1.pdf', href: '/docs/presentation_1.pdf',
}, },
{ {
id: 'p2', id: 'p2',
title: 'Presentation 2', title: 'Presentation 2',
description: 'Advanced therapeutic techniques and intervention strategies.', description: 'Advanced therapeutic techniques and intervention strategies.',
icon: 'growth', icon: 'growth',
href: '/docs/Presentation2.pdf', href: '/docs/presentation_2.pdf',
}, },
] ]