We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdeaec3 commit c5c1e44Copy full SHA for c5c1e44
src/components/Footer/Footer.component.tsx
@@ -1,14 +1,12 @@
1
-import React from 'react';
2
-
3
/**
4
* Renders Footer of the application.
5
* @function Footer
6
* @returns {JSX.Element} - Rendered component
7
*/
8
-const Footer: React.FC = () => (
9
- <footer className="bg-white py-4 mt-auto hidden md:block">
10
- <div className="container mx-auto px-6">
11
- <div className="text-gray-600 text-center">
+const Footer = () => (
+ <footer className="bg-white mb-4 hidden md:block">
+ <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">
+ <div className="text-gray-600 mx-auto">
12
© {new Date().getFullYear()} Daniel / w3bdesign
13
</div>
14
0 commit comments