From 692201c5353bfeb8cc735dbb24c3474cc0514285 Mon Sep 17 00:00:00 2001 From: Taxato Date: Tue, 26 Mar 2024 14:22:21 +0100 Subject: [PATCH] Footer hover effect --- src/components/LinkIcon.jsx | 2 +- src/components/Section.jsx | 4 +++- src/components/sections/Footer.jsx | 6 +++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/LinkIcon.jsx b/src/components/LinkIcon.jsx index d26e009..1465366 100644 --- a/src/components/LinkIcon.jsx +++ b/src/components/LinkIcon.jsx @@ -2,7 +2,7 @@ import Icon from "./Icon"; export default function LinkIcon({ name, link, children }) { return ( - + {children} ); diff --git a/src/components/Section.jsx b/src/components/Section.jsx index 485700f..d74a279 100644 --- a/src/components/Section.jsx +++ b/src/components/Section.jsx @@ -1,3 +1,5 @@ export default function Section({ children }) { - return
{children}
; + return ( +
{children}
+ ); } diff --git a/src/components/sections/Footer.jsx b/src/components/sections/Footer.jsx index 4d61ecc..4117c9f 100644 --- a/src/components/sections/Footer.jsx +++ b/src/components/sections/Footer.jsx @@ -2,17 +2,17 @@ export default function Footer() { return (