blob: b9eabfe8a435db007fd741bb71acd98655779284 (
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 BookmarksGrid from "./components/BookmarksGrid";
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>
<BookmarksGrid />
</div>
</div>
);
}
|