Files
AGS_IT_Solutions_Website/pages/404.js
stefan080106 cf580b2167 📝 Add title
2022-05-18 15:05:09 +02:00

18 lines
443 B
JavaScript

import Head from "next/head";
import Header from "../components/Navbar";
import styles from "../styles/Home.module.css";
export default function Home() {
return (
<main className={styles.main}>
<Head>
<title>AGS IT Solutions | Fehler</title>
</Head>
<div style={{ padding: "2rem", boxShadow: "5px 5px 30px 5px rgba(0,0,0,0.5)" }}>
<h1>Error 404</h1>
<h3>Diese Seite ist nicht verfügbar</h3>
</div>
</main>
);
}