export default function PressPage() {
return (
<main className="min-h-screen bg-white text-gray-900">
{/* Header */}
<header className="border-b border-gray-200 bg-white/80 backdrop-blur sticky top-0 z-10">
<div className="max-w-5xl mx-auto px-6 py-6 flex items-center justify-between">
<h1 className="text-2xl md:text-3xl font-semibold tracking-tight">Press Page: Approved Biographies</h1>
<a
href="#press-kit"
className="inline-flex items-center rounded-2xl border border-gray-300 px-4 py-2 text-sm font-medium hover:bg-gray-50"
>
Download Press Kit
</a>
</div>
</header>
{/* Intro */}
<section className="max-w-5xl mx-auto px-6 py-8">
<p className="text-base md:text-lg leading-7 md:leading-8 text-gray-700">
The following bios are approved for official use in press materials, event programs, and digital platforms. Each version is
tailored for context—from comprehensive profiles to concise executive summaries—while maintaining consistency in voice,
authority, and alignment.
</p>
</section>
{/* Full Bio */}
<section className="max-w-5xl mx-auto px-6 py-6">
<div className="rounded-2xl border border-gray-200 p-6 md:p-8 shadow-sm">
<h2 className="text-xl md:text-2xl font-semibold mb-4">Full Bio (Website Feature)</h2>
<div className="prose prose-gray max-w-none">
<p>
Whitney Pettrey advances national resilience at the intersection of infrastructure, cyber-physical systems, and executive
coordination. With more than two decades of experience across classified, critical, and command environments, her work
reinforces frameworks that sustain continuity under pressure and align leadership in disruption.
</p>
<p>
Her portfolio includes strategic simulations, continuity protocols, adversarial readiness frameworks, and executive
decision environments engineered for high-consequence conditions. She engages selectively in trusted coordination
environments and initiatives aligned with national imperatives, including ISACs and the Capitol Cyber Initiative (CCI).
</p>
<p className="font-medium">
Engagements are restricted to high-trust, credentialed settings only.
</p>
</div>
</div>
</section>
{/* Executive-Level Bio */}
<section className="max-w-5xl mx-auto px-6 py-6">
<div className="rounded-2xl border border-gray-200 p-6 md:p-8 shadow-sm">
<h2 className="text-xl md:text-2xl font-semibold mb-4">Executive-Level Bio (~150 words)</h2>
<div className="prose prose-gray max-w-none">
<p>
Whitney Pettrey strengthens national resilience through expertise spanning infrastructure, cyber-physical systems, and
executive decision environments. With over two decades of classified and critical-sector experience, she designs
frameworks that preserve continuity, synchronize leadership under operational pressure, and anticipate adversarial
escalation.
</p>
<p>
Her work includes strategic simulations, continuity architectures, and crisis decision models tailored for
high-consequence operations. She remains engaged with select information-sharing groups and initiatives such as ISACs
and the Capitol Cyber Initiative (CCI).
</p>
<p className="font-medium">Engagement is limited to secure and credentialed environments.</p>
</div>
</div>
</section>
{/* Ultra-Brief One-Liners */}
<section className="max-w-5xl mx-auto px-6 py-6">
<div className="rounded-2xl border border-gray-200 p-6 md:p-8 shadow-sm">
<h2 className="text-xl md:text-2xl font-semibold mb-4">Ultra‑Brief One‑Liners (Panel/Program Ready)</h2>
<ul className="space-y-4">
<li className="rounded-xl border border-gray-200 p-4">
<p className="text-gray-800">
<span className="font-medium">Whitney Pettrey</span> advances national resilience at the nexus of infrastructure, cyber-physical systems, and
executive coordination, with over two decades of classified-sector experience.
</p>
</li>
<li className="rounded-xl border border-gray-200 p-4">
<p className="text-gray-800">
With 20+ years in classified and high-consequence environments, <span className="font-medium">Whitney Pettrey</span> engineers continuity and
decision frameworks that align leadership under pressure.
</p>
</li>
<li className="rounded-xl border border-gray-200 p-4">
<p className="text-gray-800">
<span className="font-medium">Whitney Pettrey</span> applies two decades of critical-sector expertise to strengthen resilience across
infrastructure, cyber-physical systems, and executive decision-making.
</p>
</li>
</ul>
</div>
</section>
{/* Press Kit Block */}
<section id="press-kit" className="max-w-5xl mx-auto px-6 py-10">
<div className="rounded-2xl border border-gray-200 p-6 md:p-8 shadow-sm">
<h2 className="text-xl md:text-2xl font-semibold mb-2">Press Kit</h2>
<p className="text-gray-700 mb-4">
Download the official, press‑ready package containing approved bios (DOCX & PDF), headshot placeholders, and usage
guidelines.
</p>
<div className="flex flex-wrap gap-3">
<a
href="#"
className="inline-flex items-center justify-center rounded-2xl border border-gray-300 px-4 py-2 text-sm font-medium hover:bg-gray-50"
>
Download – PDF
</a>
<a
href="#"
className="inline-flex items-center justify-center rounded-2xl border border-gray-300 px-4 py-2 text-sm font-medium hover:bg-gray-50"
>
Download – DOCX
</a>
</div>
<p className="text-xs text-gray-500 mt-4">
For secure inquiries, use credentialed channels only. Unsolicited requests will not receive a response.
</p>
</div>
</section>
{/* Footer */}
<footer className="max-w-5xl mx-auto px-6 pb-16 pt-6 text-sm text-gray-500">
© {new Date().getFullYear()} Whitney Pettrey. All rights reserved.
</footer>
</main>
);
}