37 lines
1,004 B
TypeScript
37 lines
1,004 B
TypeScript
|
import Card from "@/components/Card";
|
||
|
|
||
|
interface Props {
|
||
|
className?: string;
|
||
|
}
|
||
|
|
||
|
const Awards = ({ className }: Props) => {
|
||
|
return (
|
||
|
<div className={" " + className}>
|
||
|
<h2 className="">Awards</h2>
|
||
|
<ul className=" ml-10 list-inside list-disc">
|
||
|
<li>
|
||
|
<strong>Andrew Taylor Still Medallion of Honor </strong>
|
||
|
<em>2019</em> — Lifetime Achievement Award by the American
|
||
|
Academy of Osteopathy.
|
||
|
</li>
|
||
|
<li>
|
||
|
<strong>Top Performer </strong>
|
||
|
<em>2018</em> — DO-Touch.NET, Physician Practice Based Research
|
||
|
Network.
|
||
|
</li>
|
||
|
<li>
|
||
|
<strong>Sutherland Memorial Lecturer </strong>
|
||
|
<em>1999</em> — Osteopathic Cranial Academy
|
||
|
</li>
|
||
|
<li>
|
||
|
<strong>Diplomat </strong>
|
||
|
<em>1979</em> — National Board of Examiners for Osteopathic
|
||
|
Physicians and Surgeons
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Awards;
|