yude.jp/src/components/Activities.tsx
2024-02-12 14:23:34 +09:00

65 lines
3.3 KiB
TypeScript

export default function Activities() {
return (
<>
<div className="rounded-lg w-full">
<ol className="relative border-s border-gray-700 left-2 mt-3">
<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">
2023 12
</time>
<h3 className="text-lg font-semibold text-white">
<a href="https://icttoracon.net/">
ICT 2023
</a>
</h3>
<p className="text-base font-normal text-gray-400">
</p>
</li>
<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">
2023 11
</time>
<h3 className="text-lg font-semibold text-white">
<a href="https://hiss25th.sakura.ne.jp/">
25 IEEE
</a>
</h3>
<p className="text-base font-normal text-gray-400">
<p></p>
</p>
</li>
<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">
2022 9
</time>
<h3 className="text-lg font-semibold text-white">
<a href="https://www.iij.ad.jp/">
@
</a>
</h3>
<p className="text-base font-normal text-gray-400">
ExperienceCourse --
</p>
</li>
<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">
2022 8
</time>
<h3 className="text-lg font-semibold text-white">
<a href="https://www.hirotec.co.jp/">
@
</a>
</h3>
</li>
</ol>
</div>
</>
)
}