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

15 lines
352 B
TypeScript
Raw Normal View History

2025-04-02 00:17:25 +02:00
export default function About() {
return (
<>
2025-04-05 01:12:38 +02:00
so hey, i&apos;m naresh!
2025-04-02 00:17:25 +02:00
<br />
<br />
2025-04-05 01:12:38 +02:00
i&apos;m an engineer and i love building things and tinkering on things.
2025-04-02 00:17:25 +02:00
<br />
<br /> i like going on runs and going for rides on my bike.
<br />
2025-04-05 01:12:38 +02:00
<br /> umm, maybe i&apos;ll write more here later.
2025-04-02 00:17:25 +02:00
</>
);
}