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 = () => {
|
const NimbusLogoMark = () => {
|
||||||
return (
|
return (
|
||||||
|
<Link to="/" style={{ textDecoration: 'none', color: 'inherit' }}>
|
||||||
<div className="nimbus-logomark">
|
<div className="nimbus-logomark">
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
@ -14,6 +17,7 @@ const NimbusLogoMark = () => {
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
|
</Link>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue