📝 Add Meta tags

This commit is contained in:
stefan080106
2022-06-08 12:39:27 +02:00
parent 79c024a10d
commit a96bd383bf

View File

@@ -1,3 +1,4 @@
import Head from "next/head";
import Footer from "../components/Footer";
import Navbar from "../components/Navbar";
import "../styles/globals.css";
@@ -6,6 +7,27 @@ import styles from "../styles/Home.module.css";
function MyApp({ Component, pageProps }) {
return (
<div {...pageProps} className={styles.container}>
<Head>
<link rel="icon" href="/Favicon.ico" />
<meta http-equiv="content-Type" content="text/html; utf-8" />
<meta http-equiv="Pragma" content="cache" />
<meta name="robots" content="INDEX,FOLLOW" />
<meta http-equiv="content-Language" content="de" />
<meta
name="description"
content="Wir sind ihr Unternehmen für IT-Dienstleistungen im Schwerpunkt Web- und Software Entwicklung und dem Einrichten von Computer- und Netzwerktechnik"
/>
<meta
name="keywords"
content="Stefan080106 Programmer Programm developer web AGS IT Solutions Software Web development Fivem Webentwicklung Programmierung"
/>
<meta name="author" content="AGS IT Solutions" />
<meta name="publisher" content="" />
<meta name="copyright" content="AGS IT Solutions" />
<meta http-equiv="Reply-to" content="solutionsagsit@gmail.com" />
<meta name="expires" content="" />
<meta name="revisit-after" content="2 days" />
</Head>
{/* Navbar */}
<Navbar />
{/* main */}