yude.jp/src/components/Profile.tsx
2024-03-09 18:43:55 +09:00

90 lines
4.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faCake, faMapPin, faArrowUpRightFromSquare } from '@fortawesome/free-solid-svg-icons'
export default function Profile() {
return (
<>
<div className="rounded-lg w-full">
<h2 className="text-xl font-semibold dark: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 dark:text-gray-400">
2020 4 &ndash;
</time>
<h3 className="text-lg font-semibold dark:text-white">
<a href="https://www.hiroshima-cu.ac.jp">
</a>
</h3>
<p className="text-base font-normal dark:text-gray-400">
<a href="https://net.info.hiroshima-cu.ac.jp">
</a>
</p>
<p className="text-base font-normal dark:text-gray-400">
<a href="https://funahcu.github.io/funalab">
,
</a>
</p>
<p className="text-base font-normal dark:text-gray-400">
<a href="http://www.cne.info.hiroshima-cu.ac.jp/">
</a>
</p>
<p className="text-base font-normal dark:text-gray-400">
<a href="https://www2.info.hiroshima-cu.ac.jp/">
</a>
</p>
</li>
</ol>
<p className="text-right">
<a href="https://scrapbox.io/yude/%E9%81%8E%E5%8E%BB%E3%81%AE%E6%B4%BB%E5%8B%95%E7%AD%89">
&nbsp;<FontAwesomeIcon icon={faArrowUpRightFromSquare} />
</a>
</p>
<h2 className="text-xl font-semibold dark: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="dark:text-gray-300"><FontAwesomeIcon icon={faCake} />&nbsp;
<span className="dark:text-gray-50">2001 11 19 </span> (22 )</span>
</li>
<li className="items-center">
<span className="dark:text-gray-300"><FontAwesomeIcon icon={faMapPin} />&nbsp;&nbsp;<span className="dark:text-gray-50"> </span> </span>
</li>
</ul>
<h2 className="text-xl font-semibold dark:text-gray-200 mt-2 mb-1 ml-1">, </h2>
<ul className="max-w-md space-y-1 ml-5 list-disc list-inside dark:text-gray-400">
<li>
feat. (MASTER) 200 (2023 6 )
</li>
<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>
<li>
2 (2018 10 )
</li>
<li>
1 (2015 6 )
</li>
</ul>
</div>
</>
)
}