Files
www.prothmann.com/components/footer.jsx
Christian Anetzberger 13ecc97011 Bigger redesign
2023-01-31 17:05:28 +01:00

40 lines
1020 B
JavaScript

// 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>
<Container fluid>
<Row className="py-2">
<Col xs={12} lg={4} className="text-center">
<Link href="/impressum">
Impressum
</Link>
</Col>
<Col xs={12} lg={4} className="text-center">
<Link href="/datenschutz">
Datenschutz
</Link>
</Col>
<Col xs={12} lg={4} className="text-center">
<Link href="/agbs">
AGBs
</Link>
</Col>
</Row>
<Row className="footer-dark-bg py-2">
<Col>
<div className="text-center">© 2023 Prothmann GmbH</div>
</Col>
</Row>
</Container>
</footer>
);
}