File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* Renders Footer of the application.
3
- * @function Layout
3
+ * @function Footer
4
4
* @returns {JSX.Element } - Rendered component
5
5
*/
6
6
const Footer = ( ) => (
7
- < footer className = "hidden md:block w-full md:w-11/12 sm:mt-[14rem] sm:bottom-0 px-6 md:mb-2 mx-auto text-center bg-white border border-gray-300 rounded-lg shadow" >
8
- < div className = "p-6" >
9
- Copyright © { new Date ( ) . getFullYear ( ) } Daniel / w3bdesign
7
+ < footer className = "bg-white mb-4" >
8
+ < div className = "container flex md:flex-wrap flex-col md:flex-row items-center justify-between px-6 py-3 mx-auto mt-0 md:min-w-96 border border-gray-200 rounded" >
9
+ < div className = "text-gray-600 mx-auto" >
10
+ © { new Date ( ) . getFullYear ( ) } Daniel / w3bdesign
11
+ </ div >
10
12
</ div >
11
13
</ footer >
12
14
) ;
You can’t perform that action at this time.
0 commit comments