drfeely.com/app/views/components/Awards.tsx

37 lines
1,004 B
TypeScript
Raw Normal View History

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> &mdash; Lifetime Achievement Award by the American
Academy of Osteopathy.
</li>
<li>
<strong>Top Performer </strong>
<em>2018</em> &mdash; DO-Touch.NET, Physician Practice Based Research
Network.
</li>
<li>
<strong>Sutherland Memorial Lecturer </strong>
<em>1999</em> &mdash; Osteopathic Cranial Academy
</li>
<li>
<strong>Diplomat </strong>
<em>1979</em> &mdash; National Board of Examiners for Osteopathic
Physicians and Surgeons
</li>
</ul>
</div>
);
};
export default Awards;