Skip to content

Commit 35ba52a

Browse files
committed
Fix Footer
1 parent 2b2cb19 commit 35ba52a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/components/Footer/Footer.component.tsx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1+
import React from 'react';
2+
13
/**
24
* Renders Footer of the application.
3-
* @function Layout
5+
* @function Footer
46
* @returns {JSX.Element} - Rendered component
57
*/
68
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 &copy; {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 &copy; {new Date().getFullYear()} Daniel / w3bdesign
13+
</div>
1014
</div>
1115
</footer>
1216
);

0 commit comments

Comments
 (0)