This commit is contained in:
2026-04-29 21:10:53 +02:00
commit d073c4e1a5
29 changed files with 9793 additions and 0 deletions

14
my-app/app/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
"use client";
export default function Home() {
return (
<main className="min-h-screen w-full bg-black">
{/*
Pagina Home vuota.
I componenti sono ora raggiungibili separatamente su:
/terminal
/text
*/}
</main>
);
}