aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/dashboard/bookmarks/page.tsx
blob: b4158893e2e4bad24ac71a2ede64432e3c0d7ace (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import AddLink from "./components/AddLink";
import LinksGrid from "./components/LinksGrid";
import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Remember - Bookmarks",
};

export default async function Bookmarks() {
  return (
    <div className="flex flex-col">
      <div>
        <AddLink />
      </div>
      <div>
        <LinksGrid />
      </div>
    </div>
  );
}