29 lines
843 B
JavaScript
29 lines
843 B
JavaScript
// React, NextJS
|
|
import React from "react";
|
|
import Head from "next/head";
|
|
|
|
// Bootstrap components
|
|
import Container from 'react-bootstrap/Container';
|
|
import Row from 'react-bootstrap/Row';
|
|
import Col from 'react-bootstrap/Col';
|
|
|
|
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>
|
|
<Container fluid className="products-container navbar-spacing">
|
|
<Row className="align-items-center min-height-100">
|
|
<Col>
|
|
<h1 className="text-center">Allgemeine Geschäftsbedingungen</h1>
|
|
<p className="text-center">In Bearbeitung</p>
|
|
</Col>
|
|
</Row>
|
|
</Container>
|
|
</>
|
|
);
|
|
}
|