diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index 2e88d57..ef9b50f 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -1,10 +1,28 @@ +import '../styles/Footer.css'; function Footer() { + const currentYear = new Date().getFullYear(); + return ( - - ) + + ); } - -export default Footer \ No newline at end of file +export default Footer; \ No newline at end of file diff --git a/src/styles/Footer.css b/src/styles/Footer.css new file mode 100644 index 0000000..6760a72 --- /dev/null +++ b/src/styles/Footer.css @@ -0,0 +1,37 @@ +.footer { + padding: 2rem 0; + margin-top: 4rem; + border-top: 1px solid #333; + color: #B0B0B0; + font-size: 0.9rem; +} + +.footer-content { + display: flex; + justify-content: space-between; + align-items: center; + width: 80%; + max-width: 1000px; + margin: 0 auto; +} + +.footer-links { + display: flex; + gap: 1.5rem; + a{ + display: flex; + align-items: center; + justify-content: center; + color: #B0B0B0; + transition: color 0.3s ease, transform 0.3s ease; + svg{ + width: 24px; + height: 24px; + } + } +} + +.footer-links a:hover { + color: #EAEAEA; + transform: translateY(-3px); +} \ No newline at end of file