chore: application prettier

This commit is contained in:
Luc SORIGNET
2025-04-15 19:37:47 +02:00
parent dd0884bbce
commit f7666c894b
174 changed files with 10609 additions and 8760 deletions

View File

@ -1,17 +1,19 @@
import Logo from '@/components/Logo';
export default function Footer ({softwareName, softwareVersion}) {
return (
export default function Footer({ softwareName, softwareVersion }) {
return (
<footer className="h-16 bg-white border-t border-gray-200 px-8 py-4 flex items-center justify-between">
<div className="text-sm font-light">
<span>&copy; {new Date().getFullYear()} N3WT-INNOV Tous droits réservés.</span>
</div>
<div className="text-sm font-light flex items-center justify-between">
<div className="text-sm font-light mr-4">{softwareName} - {softwareVersion}</div>
<Logo className="w-8 h-8" />
<div className="text-sm font-light">
<span>
&copy; {new Date().getFullYear()} N3WT-INNOV Tous droits réservés.
</span>
</div>
<div className="text-sm font-light flex items-center justify-between">
<div className="text-sm font-light mr-4">
{softwareName} - {softwareVersion}
</div>
<Logo className="w-8 h-8" />
</div>
</footer>
)
);
}