mirror of
https://git.aramjonghu.dev/AramJonghu/aramjonghu-site.git
synced 2026-09-05 23:23:31 +02:00
19 lines
563 B
TypeScript
19 lines
563 B
TypeScript
export default function About() {
|
|
return (
|
|
<>
|
|
<h1 className="text-center m-6 text-3xl font-bold text-ctp-mauve">
|
|
About
|
|
</h1>
|
|
<div className="flex justify-center mb-6">
|
|
<p className="text-ctp-text">
|
|
Here is some interesting text to start a new commit to new
|
|
branch.
|
|
</p>
|
|
<p className="text-ctp-text">
|
|
jjing. It moves well for now.
|
|
</p>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|