From 3d6cb453829f3a0613ca999e5599c83a3fbe342c Mon Sep 17 00:00:00 2001 From: daniel31x13 Date: Wed, 11 Oct 2023 12:18:45 -0400 Subject: [PATCH 1/3] 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}
From 89436d3500b59b44a53108bd9f77bb8a60cf3120 Mon Sep 17 00:00:00 2001 From: daniel31x13 Date: Wed, 11 Oct 2023 13:19:13 -0400 Subject: [PATCH 2/3] small change --- pages/subscribe.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/subscribe.tsx b/pages/subscribe.tsx index f0c55ca..7479b9f 100644 --- a/pages/subscribe.tsx +++ b/pages/subscribe.tsx @@ -11,7 +11,7 @@ import { Plan } from "@/types/global"; export default function Subscribe() { const [submitLoader, setSubmitLoader] = useState(false); - const [plan, setPlan] = useState(0); + const [plan, setPlan] = useState(1); const { data, status } = useSession(); const router = useRouter(); From ac47ca5c5490d291b253111be8e32f2dc1c91799 Mon Sep 17 00:00:00 2001 From: daniel31x13 Date: Wed, 11 Oct 2023 13:19:47 -0400 Subject: [PATCH 3/3] small change --- pages/subscribe.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/pages/subscribe.tsx b/pages/subscribe.tsx index 7479b9f..a3c1279 100644 --- a/pages/subscribe.tsx +++ b/pages/subscribe.tsx @@ -1,6 +1,5 @@ import SubmitButton from "@/components/SubmitButton"; import { signOut } from "next-auth/react"; -import Image from "next/image"; import { useEffect, useState } from "react"; import { toast } from "react-hot-toast"; import { useSession } from "next-auth/react";