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

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>