feat(nimbus-logo-mark): wrap with link to landing page
This commit is contained in:
parent
b94e18f1c2
commit
f84066639b
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue