nrx.sh/src/app/page.tsx

21 lines
350 B
TypeScript
Raw Normal View History

2025-04-02 00:17:25 +02:00
/* eslint-disable react/no-unescaped-entities */
"use client";
import React from "react";
export default function App() {
return (
<>
hi,
<br />
<br /> thanks for stopping by.
<br />
<br /> this is still a work in progress, so it's a little sparse.
<br />
<br />
<br /> naresh.
</>
);
}