nrx.sh/src/app/page.tsx
2025-04-03 13:25:00 +02:00

21 lines
425 B
TypeScript

"use client";
import React from "react";
export default function App() {
return (
<>
hi,
<br />
<br /> how nice of you to stop by.
<br />
<br /> this cute little site is my own little playground. my own corner of
the web for me to share and show off.
<br />
<br /> feel free to poke around and see what you find.
<br />
<br /> &mdash; naresh
</>
);
}