init project

This commit is contained in:
Ybehrooz
2025-08-28 20:29:35 +03:30
parent 3b54907b20
commit e4d83eb1bf
46 changed files with 7238 additions and 1 deletions

11
src/pages/Settings.tsx Normal file
View File

@@ -0,0 +1,11 @@
export default function Settings() {
return (
<div className="space-y-2">
<h1 className="text-2xl font-semibold">Settings</h1>
<p className="text-sm text-gray-600">Project-wide preferences and configuration.</p>
<div className="mt-4 bg-white border border-gray-200 rounded-lg p-4 text-sm text-gray-700">
Coming soon.
</div>
</div>
)
}