juntekim.com/juntekim_frontend/app/About/page.tsx
2025-12-07 14:58:58 +00:00

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>
</>
);
}