From e46ec76314c0cfdbdad7b8cfe22c0f06de27c807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veikko=20Lintuj=C3=A4rvi?= Date: Thu, 22 Jun 2023 11:19:52 +0300 Subject: [PATCH] Move HTML title to correct place --- package-lock.json | 16 ++++++++++------ pages/_app.tsx | 4 ++++ pages/_document.tsx | 1 - 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2f5569b..ef7600a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -723,9 +723,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001346", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001346.tgz", - "integrity": "sha512-q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ==", + "version": "1.0.30001506", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz", + "integrity": "sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw==", "funding": [ { "type": "opencollective", @@ -734,6 +734,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -3632,9 +3636,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30001346", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001346.tgz", - "integrity": "sha512-q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ==" + "version": "1.0.30001506", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz", + "integrity": "sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw==" }, "chalk": { "version": "4.1.2", diff --git a/pages/_app.tsx b/pages/_app.tsx index ca318d7..3db1e59 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -4,10 +4,14 @@ import type { AppProps } from 'next/app'; import Footer from './components/Footer'; import NavBar from './components/NavBar'; import Logo from './components/Logo'; +import Head from 'next/head'; function Runosaari({ Component, pageProps }: AppProps) { return ( <> + + Runosaari +
diff --git a/pages/_document.tsx b/pages/_document.tsx index 817bceb..37bc5c7 100644 --- a/pages/_document.tsx +++ b/pages/_document.tsx @@ -5,7 +5,6 @@ class MyDocument extends Document { return ( - Runosaari