File tree 1 file changed +6
-2
lines changed
site/src/modules/dashboard/Navbar
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -48,20 +48,24 @@ export const NavbarView: FC<NavbarViewProps> = ({
48
48
const LogoHEaaNDark = "/favicons/heaan-dark.svg" ;
49
49
const LogoHEaaNLight = "/favicons/heaan-light.svg" ;
50
50
51
+ const landingURL = "https://heaan.io" ;
52
+
51
53
return (
52
54
< div className = "border-0 border-b border-solid h-[72px] flex items-center leading-none px-6" >
53
- < NavLink to = "/workspaces" >
55
+ { /*<NavLink to="/workspaces">*/ }
56
+ < a href = { landingURL } >
54
57
< img
55
58
src = { colorTheme === "light" ? LogoHEaaNLight : LogoHEaaNDark }
56
59
alt = "HEaaN-logo"
57
60
className = "w-8 h-8"
58
61
/>
62
+ </ a >
59
63
{ /*{logo_url ? (
60
64
<ExternalImage className="h-7" src={logo_url} alt="Custom Logo" />
61
65
) : (
62
66
<CoderIcon className="h-7 w-7 fill-content-primary" />
63
67
)}*/ }
64
- </ NavLink >
68
+ { /* </NavLink>*/ }
65
69
66
70
< NavItems className = "ml-4" />
67
71
You can’t perform that action at this time.
0 commit comments