blob: 26ec45e9089859b45211d17c37369145c9062d8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks";
import InfoTooltip from "@/components/ui/info-tooltip";
export default async function ArchivedBookmarkPage() {
return (
<Bookmarks
header={
<span className="flex gap-2">
<p className="text-2xl">🗄️ Archive</p>
<InfoTooltip size={17} className="my-auto" variant="explain">
<p>Archived bookmarks won't appear in the homepage</p>
</InfoTooltip>
</span>
}
query={{ archived: true }}
showDivider={true}
showEditorCard={true}
/>
);
}
|