mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 07:53:23 +00:00
refactor: adaptation mobile
This commit is contained in:
17
Front-End/src/components/Footer.js
Normal file
17
Front-End/src/components/Footer.js
Normal file
@ -0,0 +1,17 @@
|
||||
import Logo from '@/components/Logo';
|
||||
|
||||
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>© {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>
|
||||
)
|
||||
}
|
||||
|
||||
@ -29,7 +29,7 @@ function Sidebar({ establishment, currentPage, items }) {
|
||||
|
||||
return <>
|
||||
{/* Sidebar */}
|
||||
<div className="w-64 bg-white border-r border-gray-200 py-6 px-4">
|
||||
<div className="w-64 bg-white border-r h-full border-gray-200 py-6 px-4">
|
||||
<div className="flex items-center mb-8 px-2">
|
||||
<div className="text-xl font-semibold">{establishment?.name}</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user