From 02b2cd8478b2d2bc1367e961bb205626b5918ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veikko=20Lintuj=C3=A4rvi?= Date: Mon, 28 Nov 2022 22:27:03 +0200 Subject: [PATCH] Add umami script --- pages/_document.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/_document.tsx diff --git a/pages/_document.tsx b/pages/_document.tsx new file mode 100644 index 0000000..877ed07 --- /dev/null +++ b/pages/_document.tsx @@ -0,0 +1,24 @@ +import Document, { Html, Head, Main, NextScript } from 'next/document'; + +class MyDocument extends Document { + render() { + return ( + + + + + +
+ + + + ); + } +} + +export default MyDocument;