Add nature-informed counseling portfolio site

This commit is contained in:
2026-04-18 15:23:20 -04:00
commit 6a28cbdd58
59 changed files with 33409 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
export default function Introduction() {
return (
<section id="introduction" className="mx-auto max-w-6xl px-4 py-12 md:py-16">
<div className="grid items-center gap-10 md:grid-cols-2">
<div>
<div className="overflow-hidden rounded-2xl border border-slate-200 bg-emerald-50/40">
<img
src="/docs/headshot-placeholder.png"
alt="Peter-William L. Myers headshot"
className="h-80 w-full bg-emerald-100 object-cover md:h-96"
/>
</div>
</div>
<div className="space-y-6">
<div>
<h2 className="font-serif text-3xl font-semibold text-slate-900">Introduction</h2>
<p className="mt-3 text-base leading-relaxed text-slate-700">
Peter-William L. Myers is a licensed professional counselor and certified nature-informed
therapist specializing in integrated treatment for co-occurring mental health and substance
use disorders. With 10 years of clinical experience, Peter blends trauma-informed care,
narrative therapy, and nature-based interventions to support holistic healing and
resilience. Passionate about making counseling accessible and culturally responsive, Peter
has developed presentations that harness the restorative power of the natural world. Peter
is committed to empowering clinicians with innovative tools to deepen client engagement and
recovery outcomes and is currently earning his PhD in Counselor Education and Supervision at
Waynesburg University.
</p>
</div>
<div className="rounded-2xl border border-slate-200 bg-white/70 p-5">
<h3 className="font-serif text-xl font-semibold text-slate-900">Purpose</h3>
<p className="mt-2 text-base leading-relaxed text-slate-700">
The purpose of this Leadership Counseling Portfolio is to present the growth experience
connected to counselor identity development and provide evidence of competency,
understanding, and continued advanced in the counseling field that allows Peter to honor his
clients journey of healing.
</p>
</div>
</div>
</div>
</section>
)
}