📝 Add Meta tags
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
import Head from "next/head";
|
||||||
import Footer from "../components/Footer";
|
import Footer from "../components/Footer";
|
||||||
import Navbar from "../components/Navbar";
|
import Navbar from "../components/Navbar";
|
||||||
import "../styles/globals.css";
|
import "../styles/globals.css";
|
||||||
@@ -6,6 +7,27 @@ import styles from "../styles/Home.module.css";
|
|||||||
function MyApp({ Component, pageProps }) {
|
function MyApp({ Component, pageProps }) {
|
||||||
return (
|
return (
|
||||||
<div {...pageProps} className={styles.container}>
|
<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 */}
|
||||||
<Navbar />
|
<Navbar />
|
||||||
{/* main */}
|
{/* main */}
|
||||||
|
|||||||
Reference in New Issue
Block a user