diff --git a/pages/_app.tsx b/pages/_app.tsx index 201a6395c..bc5b72301 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,4 +1,5 @@ import useGtag from 'hooks/useGtag' +import Head from 'next/head' import { AppProps } from 'next/app' import { globalStyles } from 'styles' import { Provider } from 'next-auth/client' @@ -10,9 +11,18 @@ function MyApp({ Component, pageProps }: AppProps): JSX.Element { useGtag() return ( - - - + <> + + tldraw + + + + + + ) } diff --git a/pages/_document.tsx b/pages/_document.tsx index 65fb35297..69db97e3e 100644 --- a/pages/_document.tsx +++ b/pages/_document.tsx @@ -37,35 +37,42 @@ class MyDocument extends NextDocument { } render(): JSX.Element { + const APP_NAME = 'tldraw' + const APP_DESCRIPTION = 'A tiny little drawing app.' + const APP_URL = 'https://tldraw.com' + return ( - - - + - - + + + - - - + + + + - - + + + + + + + - - +