yude.jp/src/components/Profile.tsx
2024-02-12 14:18:56 +09:00

82 lines
3.9 KiB
TypeScript

import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faCake, faMapPin } from '@fortawesome/free-solid-svg-icons'
export default function Profile() {
return (
<>
<div className="rounded-lg w-full">
<h2 className="text-xl font-semibold text-gray-200 mt-2 mb-1 ml-1"></h2>
<ol className="relative border-s border-gray-700 left-2">
<li className="mb-2 ms-4">
<div className="absolute w-3 h-3 bg-gray-200 rounded-full mt-1.5 -start-1.5 border border-gray-900 bg-gray-700"></div>
<time className="mb-1 text-sm font-normal leading-none text-gray-400">
2020 4 &ndash;
</time>
<h3 className="text-lg font-semibold text-white">
<a href="https://www.hiroshima-cu.ac.jp">
</a>
</h3>
<p className="text-base font-normal text-gray-400">
<a href="https://net.info.hiroshima-cu.ac.jp">
</a>
</p>
<p className="text-base font-normal text-gray-400">
<a href="https://funahcu.github.io/funalab">
,
</a>
</p>
<p className="text-base font-normal text-gray-400">
<a href="http://www.cne.info.hiroshima-cu.ac.jp/">
</a>
</p>
<p className="text-base font-normal text-gray-400">
<a href="https://www2.info.hiroshima-cu.ac.jp/">
</a>
</p>
</li>
<li className="ms-4">
<div className="absolute w-3 h-3 bg-gray-200 rounded-full mt-1.5 -start-1.5 border border-gray-900 bg-gray-700"></div>
<time className="mb-1 text-sm font-normal leading-none text-gray-400">2017 4 &ndash; 2020 3 </time>
<h3 className="text-lg font-semibold text-white"></h3>
<p className="text-base font-normal text-gray-400"></p>
</li>
</ol>
<h2 className="text-xl font-semibold text-gray-200 mt-2 mb-1 ml-1"></h2>
<ul className="space-y-1 list-inside mt-2 ml-5">
<li className="items-center">
<span className="text-gray-300"><FontAwesomeIcon icon={faCake} />&nbsp;<span className="text-gray-50">2001 11 19 </span> (22 )</span>
</li>
<li className="items-center">
<span className="text-gray-300"><FontAwesomeIcon icon={faMapPin} />&nbsp;&nbsp;<span className="text-gray-50"> </span> </span>
</li>
</ul>
<h2 className="text-xl font-semibold text-gray-200 mt-2 mb-1 ml-1">, </h2>
<ul className="max-w-md space-y-1 ml-5 list-disc list-inside text-gray-400">
<li>
IPA (2022 4 )
</li>
<li>
, AT (2021 6 )
</li>
<li>
TOEIC Listening & Reading: 860 (2022 12 )
</li>
<li>
TOEIC Listening & Reading, IP 960 (2021 12 )
</li>
</ul>
</div>
</>
)
}