Files
aramjonghu-site/frontend/src/components/About.tsx
T
2026-07-02 19:49:00 +02:00

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