49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import Card from "@/components/Card";
|
|
|
|
const BoardCerts = () => {
|
|
return (
|
|
<div className="">
|
|
<h2>Board Certifications</h2>
|
|
<ul className=" ml-10 list-inside list-disc">
|
|
<li>
|
|
<strong>American Board of Medical Acupuncture </strong>
|
|
<em>2001, 2011</em>
|
|
</li>
|
|
<li>
|
|
<strong>
|
|
American Board of Independent Medical Examiners (CIME){" "}
|
|
</strong>
|
|
<em>2001, 2010</em>
|
|
</li>
|
|
<li>
|
|
<strong>
|
|
American Board of Quality Assurance and Utilization Review
|
|
Physicians{" "}
|
|
</strong>
|
|
<em>'96, '02, '07, '12, '16, '20</em>
|
|
</li>
|
|
<li>
|
|
<strong>American Board of Forensic Examiners </strong>
|
|
<em>1994</em>
|
|
</li>
|
|
<li>
|
|
<strong>
|
|
American Osteopathic Board of Special Proficiency in Manipulative
|
|
Medicine{" "}
|
|
</strong>
|
|
<em>1991</em>
|
|
</li>
|
|
<li>
|
|
<strong>American Board of Disability Evaluating Physicians </strong>
|
|
<em>1988</em>
|
|
</li>
|
|
<li>
|
|
<strong>American Board of Osteopathic Family Practice </strong>
|
|
<em>1986</em>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default BoardCerts;
|