File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { JSX , createSignal , onMount , onCleanup } from "solid-js" ;
2
2
import { A , useLocation } from "@solidjs/router" ;
3
+ import { Logo } from "./Logo" ;
3
4
4
5
export default function TopMenu ( ) : JSX . Element {
5
6
const location = useLocation ( ) ;
@@ -28,13 +29,15 @@ export default function TopMenu(): JSX.Element {
28
29
< div class = { `flex items-center justify-center h-16 ${ scrolled ( ) ? 'glass' : '' } ` } >
29
30
{ /* Navigation Links */ }
30
31
< nav class = "flex items-center space-x-10" >
31
- { /* Home */ }
32
+ { /* Home with Logo */ }
32
33
< A
33
34
href = "/"
34
- class = { `text-white hover:text-white/80 transition-all duration-75 font-bold text-lg ${ isActive ( '/' ) ? 'underline' : '' } ` }
35
+ class = { `text-white hover:text-white/80 transition-all duration-75 ${ isActive ( '/' ) ? 'underline' : '' } ` }
35
36
aria-label = "Home"
36
37
>
37
- NixCon 2025
38
+ < div class = "w-8 h-8" >
39
+ < Logo />
40
+ </ div >
38
41
</ A >
39
42
40
43
< div class = "text-white" > |</ div >
You can’t perform that action at this time.
0 commit comments