Skip to content

Commit 7fc4ef3

Browse files
committed
Updated links color in footer
Previously font color of links in footer are black which are not clear visible on blue background. so i change to white color.
1 parent 8ff5784 commit 7fc4ef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/LinksComponent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const LinksComponent = ({ label, links }) => {
1010
<ul className="mb-0 list-none">
1111
{links.map((link, index) => (
1212
<li key={index}>
13-
<a href={link.url} className="text-neutral-900 text-sm">
13+
<a href={link.url} className="text-neutral-900 text-sm text-white font-lite">
1414
{link.text}
1515
</a>
1616
</li>

0 commit comments

Comments
 (0)