62 lines
2.4 KiB
JavaScript
62 lines
2.4 KiB
JavaScript
import Head from "next/head";
|
|
import Footer from "../components/Footer";
|
|
import Navbar from "../components/Navbar";
|
|
import "../styles/globals.css";
|
|
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 httpEquiv="content-Type" content="text/html; utf-8" />
|
|
<meta httpEquiv="Pragma" content="cache" />
|
|
<meta name="robots" content="INDEX,FOLLOW" />
|
|
<meta httpEquiv="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 httpEquiv="Reply-to" content="solutionsagsit@gmail.com" />
|
|
<meta name="expires" content="" />
|
|
<meta name="revisit-after" content="2 days" />
|
|
|
|
{/* <!-- Open Graph / Facebook --> */}
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://ags-it-solutions.de/" />
|
|
<meta property="og:title" content="AGS IT Solutions" />
|
|
<meta
|
|
property="og:description"
|
|
content="Wir sind ihr Unternehmen für IT-Dienstleistungen im Schwerpunkt Web- und Software Entwicklung und dem Einrichten von Computer- und Netzwerktechnik"
|
|
/>
|
|
<meta property="og:image" content="/Logo_AGS.png" />
|
|
|
|
{/* <!-- Twitter --> */}
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:url" content="https://ags-it-solutions.de/" />
|
|
<meta property="twitter:title" content="AGS IT Solutions" />
|
|
<meta
|
|
property="twitter:description"
|
|
content="Wir sind ihr Unternehmen für IT-Dienstleistungen im Schwerpunkt Web- und Software Entwicklung und dem Einrichten von Computer- und Netzwerktechnik"
|
|
/>
|
|
<meta property="twitter:image" content="/Logo_AGS.png"></meta>
|
|
</Head>
|
|
{/* Navbar */}
|
|
<Navbar />
|
|
{/* main */}
|
|
<Component className={styles.main} />
|
|
{/* footer */}
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|