mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-05-30 10:55:16 -04:00
Add a space in the tabname (head)
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user