1 2 3 4 5 6 7 8 9 10 11
import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks"; export default async function ArchivedBookmarkPage() { return ( <Bookmarks header={<p className="text-2xl">🗄️ Archive</p>} query={{ archived: true }} showDivider={true} /> ); }