Bigger redesign

This commit is contained in:
Christian Anetzberger
2023-01-31 17:05:28 +01:00
parent 7ac213d208
commit 13ecc97011
29 changed files with 3207 additions and 299 deletions

View File

@@ -1,32 +1,39 @@
// React, NextJS
import React from "react";
import Link from "next/link";
// Bootstrap components
import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';
export default function Footer(props) {
return (
<footer>
<div className="container-fluid">
<div className="row py-2">
<div className="col-12 col-lg-4 text-center">
<Container fluid>
<Row className="py-2">
<Col xs={12} lg={4} className="text-center">
<Link href="/impressum">
Impressum
</Link>
</div>
<div className="col-12 col-lg-4 text-center">
</Col>
<Col xs={12} lg={4} className="text-center">
<Link href="/datenschutz">
Datenschutz
</Link>
</div>
<div className="col-12 col-lg-4 text-center">
</Col>
<Col xs={12} lg={4} className="text-center">
<Link href="/agbs">
AGBs
</Link>
</div>
</div>
<div className="row footer-dark-bg py-2">
<div className="col-12">
<div className="text-center">© 2021 Prothmann GmbH</div>
</div>
</div>
</div>
</Col>
</Row>
<Row className="footer-dark-bg py-2">
<Col>
<div className="text-center">© 2023 Prothmann GmbH</div>
</Col>
</Row>
</Container>
</footer>
);
}