Project created from basic template

This commit is contained in:
Quests Agent
2025-09-29 17:56:30 +02:00
commit a4ecf845bf
26 changed files with 3887 additions and 0 deletions

14
src/client/app.tsx Normal file
View File

@@ -0,0 +1,14 @@
function App() {
return (
<div className="min-h-screen w-full max-w-4xl mx-auto p-4">
{/* Replace this placeholder content with your app components */}
<div className="text-center mt-72">
<h1 className="text-2xl mb-4 opacity-50">
Building your new project...
</h1>
</div>
</div>
);
}
export default App;