This commit is contained in:
2026-03-22 13:01:46 -03:00
parent af0910f428
commit 6694bce736
52 changed files with 4949 additions and 102 deletions
+10
View File
@@ -0,0 +1,10 @@
import { NoteForm } from '@/components/note-form'
export default function NewNotePage() {
return (
<main className="container mx-auto py-8 px-4">
<h1 className="text-2xl font-bold mb-6">Crear nueva nota</h1>
<NoteForm />
</main>
)
}