diff options
Diffstat (limited to 'pages/index.tsx')
| -rw-r--r-- | pages/index.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 82e3381..259776d 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -74,7 +74,13 @@ const CustomPlayerPage = () => { return ( <PageBase> <Head> - <title>Custom Player - Ragtag Archive</title> + { + infoJson && infoJson.title ? ( + <title>{infoJson.title}</title> + ) : + <title>a very nice video</title> + } + </Head> {showPlayer ? ( <div className="mt-2"> |
