diff --git a/pages/public/collections/[id].tsx b/pages/public/collections/[id].tsx index 1e3dd29..80d03f2 100644 --- a/pages/public/collections/[id].tsx +++ b/pages/public/collections/[id].tsx @@ -6,6 +6,7 @@ import { PublicCollectionIncludingLinks } from "@/types/global"; import { useRouter } from "next/router"; import React, { useEffect, useState } from "react"; import { motion, Variants } from "framer-motion"; +import Head from "next/head"; const cardVariants: Variants = { offscreen: { @@ -62,6 +63,16 @@ export default function PublicCollections() { return data ? (
+ {data ? ( + + {data.name} | Linkwarden + + + ) : undefined}