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> ); }