feat(nimbus-logo-mark): wrap with link to landing page

This commit is contained in:
RadoslavDimchev 2024-04-12 11:05:29 +03:00 committed by Emil Ivanichkov
parent b94e18f1c2
commit f84066639b
1 changed files with 18 additions and 14 deletions

View File

@ -1,5 +1,8 @@
import { Link } from 'react-router-dom'
const NimbusLogoMark = () => {
return (
<Link to="/" style={{ textDecoration: 'none', color: 'inherit' }}>
<div className="nimbus-logomark">
<svg
xmlns="http://www.w3.org/2000/svg"
@ -14,6 +17,7 @@ const NimbusLogoMark = () => {
/>
</svg>
</div>
</Link>
)
}