26 lines
637 B
TypeScript
26 lines
637 B
TypeScript
export default function About() {
|
|
return (
|
|
<>
|
|
<h1 className="text-2xl font-bold mb-4">Under construction</h1>
|
|
|
|
<div className="flex flex-col space-y-2">
|
|
<a
|
|
href="https://www.linkedin.com/in/juntekim"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-blue-500 underline"
|
|
>
|
|
LinkedIn
|
|
</a>
|
|
<a
|
|
href="https://www.youtube.com/@ThePragmaticAutomator"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-red-500 underline"
|
|
>
|
|
YouTube
|
|
</a>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|