2025-04-02 00:17:25 +02:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
export default function App() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
hi,
|
|
|
|
<br />
|
2025-04-03 13:21:58 +02:00
|
|
|
<br /> how nice of you to stop by.
|
2025-04-02 00:17:25 +02:00
|
|
|
<br />
|
2025-04-03 13:21:58 +02:00
|
|
|
<br /> this cute little site is my own little playground. my own corner of
|
|
|
|
the web for me to share and show off.
|
2025-04-02 00:17:25 +02:00
|
|
|
<br />
|
2025-04-03 13:21:58 +02:00
|
|
|
<br /> feel free to poke around and see what you find.
|
2025-04-02 00:17:25 +02:00
|
|
|
<br />
|
2025-04-03 13:21:58 +02:00
|
|
|
<br /> — naresh
|
2025-04-02 00:17:25 +02:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|