Move HTML title to correct place

This commit is contained in:
2023-06-22 11:19:52 +03:00
parent b1839ce31f
commit e46ec76314
3 changed files with 14 additions and 7 deletions

16
package-lock.json generated
View File

@@ -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",

View File

@@ -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 (
<>
<Head>
<title>Runosaari</title>
</Head>
<NavBar />
<Logo />
<main>

View File

@@ -5,7 +5,6 @@ class MyDocument extends Document {
return (
<Html>
<Head>
<title>Runosaari</title>
<link
href='https://fonts.googleapis.com/css?family=Crimson+Text'
rel='stylesheet'