FooterLink
This component creates links with white color and a white text-underline on hover. Therefore it is recommended to use it in combination with Footer
for the background in brand color and the alignment as well as the FooterLinks to generate a styled list.
Props
| Property name | Type | Required | Default |
|---|---|---|---|
href | string | - | |
text | string | - | |
onClick | () => void | - |
Example
<div
style={{
backgroundColor: "#000661",
padding: "8px",
}}
>
<FooterLink href="/about" text="About" />
</div>