Add BMAD framework, authentication, and new features

This commit is contained in:
2026-01-08 21:23:23 +01:00
parent f07d28aefd
commit 15a95fb319
1298 changed files with 73308 additions and 154901 deletions

View File

@@ -1,5 +1,5 @@
import { getArchivedNotes } from '@/app/actions/notes'
import { NoteGrid } from '@/components/note-grid'
import { MasonryGrid } from '@/components/masonry-grid'
export const dynamic = 'force-dynamic'
@@ -9,7 +9,7 @@ export default async function ArchivePage() {
return (
<main className="container mx-auto px-4 py-8 max-w-7xl">
<h1 className="text-3xl font-bold mb-8">Archive</h1>
<NoteGrid notes={notes} />
<MasonryGrid notes={notes} />
</main>
)
}