Next.js mit App -Router für export zu statische dateien
This commit is contained in:
21
components/Footer.jsx
Normal file
21
components/Footer.jsx
Normal file
@@ -0,0 +1,21 @@
|
||||
// src/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;
|
||||
Reference in New Issue
Block a user