This commit is contained in:
Christian Anetzberger
2022-01-29 20:48:35 +01:00
commit 01907eb338
144 changed files with 11275 additions and 0 deletions

22
pages/agbs.jsx Normal file
View File

@@ -0,0 +1,22 @@
import React from "react";
import Head from "next/head";
export default function Abgs(props) {
return (
<>
<Head>
<meta name="description" content="Datenschutz" />
<meta name="keywords" content="AGBs, Prothmann, Hans Prothmann GmbH" />
<title>AGBs - Prothmann GmbH</title>
</Head>
<div className="container-fluid products-container navbar-spacing">
<div className="row align-items-center min-height-100">
<div className="col">
<h1 className="text-center">Allgemeine Geschäftsbedingungen</h1>
<p className="text-center">In Bearbeitung</p>
</div>
</div>
</div>
</>
);
}