Files
CPLv4.0/components/Footer.jsx
2024-09-23 12:36:54 +02:00

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;