From 3d6cb453829f3a0613ca999e5599c83a3fbe342c Mon Sep 17 00:00:00 2001 From: daniel31x13 Date: Wed, 11 Oct 2023 12:18:45 -0400 Subject: [PATCH] added page title to public pages --- pages/public/collections/[id].tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) 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}