diff --git a/src/components/node/NodeHeadMetadata/index.tsx b/src/components/node/NodeHeadMetadata/index.tsx index de793dfc..706b2ec1 100644 --- a/src/components/node/NodeHeadMetadata/index.tsx +++ b/src/components/node/NodeHeadMetadata/index.tsx @@ -1,7 +1,10 @@ import React, { VFC } from 'react'; +import Head from 'next/head'; + import { PageTitle } from '~/components/common/PageTitle'; import { useNodeContext } from '~/utils/context/NodeContextProvider'; +import { getURLFromString } from '~/utils/dom'; import { getPageTitle } from '~/utils/ssr/getPageTitle'; interface NodeHeadMetadataProps {} @@ -12,6 +15,16 @@ const NodeHeadMetadata: VFC = () => { return ( <> + + + + + + + + + + ); };