Files
nrx.sh/src/app/about/page.tsx

17 lines
387 B
TypeScript
Raw Normal View History

2025-04-02 00:17:25 +02:00
/* eslint-disable react/no-unescaped-entities */
export default function About() {
return (
<>
so hey, i'm naresh!
<br />
<br />
i'm an engineer and i love building things and tinkering on things.
<br />
<br /> i like going on runs and going for rides on my bike.
<br />
<br /> umm, maybe i'll write more here later.
</>
);
}