16 lines
425 B
TypeScript
16 lines
425 B
TypeScript
import { getArchivedNotes } from '@/app/actions/notes'
|
|
import { MasonryGrid } from '@/components/masonry-grid'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export default async function ArchivePage() {
|
|
const notes = await getArchivedNotes()
|
|
|
|
return (
|
|
<main className="container mx-auto px-4 py-8 max-w-7xl">
|
|
<h1 className="text-3xl font-bold mb-8">Archive</h1>
|
|
<MasonryGrid notes={notes} />
|
|
</main>
|
|
)
|
|
}
|