Skip to content

Commit b711182

Browse files
💡 (components/Footer.tsx): update Footer component's social media links container class to include text-white for better readability and consistency
✨ (components/Footer.tsx): refactor Footer component's style attribute to use className instead of inline styles for improved maintainability and accessibility
1 parent 2e4197b commit b711182

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

‎components/Footer.tsx‎

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,7 @@ const Footer = () => {
6565

6666
return (
6767
<footer>
68-
<div
69-
style={{ color: "white" }}
70-
className="mx-3 my-3 social-icons-container"
71-
>
68+
<div className="mx-3 my-3 social-icons-container text-white">
7269
{socialMediaLinks.map((link, index) => (
7370
<a
7471
key={index}

0 commit comments

Comments
 (0)