Add a space in the tabname (head)

This commit is contained in:
Zoe Roux 2023-09-06 15:23:13 +02:00
parent 5f1ea76cad
commit 70afa7cc9b

View File

@ -23,7 +23,7 @@ import NextHead from "next/head";
export const Head = ({ title, description }: { title?: string | null; description?: string | null }) => {
return (
<NextHead>
{title && <title>{title + "- Kyoo"}</title>}
{title && <title>{title + " - Kyoo"}</title>}
{description && <meta name="description" content={description} />}
</NextHead>
);