blob: fd39b90a92564ba3ad0fc735a107b0b5098fac4e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks";
import ChangeLayout from "@/components/dashboard/ChangeLayout";
export default async function FavouritesBookmarkPage() {
return (
<Bookmarks
header={
<div className="flex items-center justify-between">
<p className="text-2xl">⭐️ Favourites</p>
<ChangeLayout />
</div>
}
query={{ favourited: true }}
showDivider={true}
showEditorCard={true}
/>
);
}
|