22 lines
606 B
JavaScript
22 lines
606 B
JavaScript
// components/Footer.jsx
|
|
import React from "react";
|
|
|
|
function Footer() {
|
|
return (
|
|
<footer className="bg-gray-300 p-4 flex-shrink-0">
|
|
<div className="container mx-auto flex justify-between">
|
|
<div>
|
|
<p className="text-sm">Littwin Systemtechnik GmbH & Co. KG</p>
|
|
</div>
|
|
<div className="flex space-x-4">
|
|
<p className="text-sm">Telefon: 04402 972577-0</p>
|
|
<p className="text-sm">E-Mail: kontakt@littwin-systemtechnik.de</p>
|
|
<p className="text-sm">Handbücher</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|
|
|
|
export default Footer;
|