File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
1
3
/**
2
4
* Renders Footer of the application.
3
- * @function Layout
5
+ * @function Footer
4
6
* @returns {JSX.Element } - Rendered component
5
7
*/
6
8
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
9
+ < footer className = "w-full bg-white" >
10
+ < div className = "container flex items-center justify-between px-6 py-3 mx-auto mt-0 md:min-w-96" >
11
+ < div className = "text-gray-700" >
12
+ Copyright © { new Date ( ) . getFullYear ( ) } Daniel / w3bdesign
13
+ </ div >
10
14
</ div >
11
15
</ footer >
12
16
) ;
You can’t perform that action at this time.
0 commit comments