File tree 2 files changed +9
-12
lines changed
2 files changed +9
-12
lines changed Original file line number Diff line number Diff line change 1
1
import React , { FC , useCallback , useState } from "react" ;
2
2
import classnames from "classnames" ;
3
- import Link from "next/link" ;
4
3
import SocialLinks from "./social-links" ;
5
4
6
5
// TODO: what is this thing??
7
6
type Blog = any ;
8
7
9
8
const Brand : FC = ( ) => (
10
- < Link href = "/" >
11
- < a className = "navbar-item" >
12
- < img
13
- src = "/img/tokio-horizontal.svg"
14
- alt = "tokio-logo"
15
- width = "133"
16
- height = "56"
17
- />
18
- </ a >
19
- </ Link >
9
+ < a href = "/" className = "navbar-item" >
10
+ < img
11
+ src = "/img/tokio-horizontal.svg"
12
+ alt = "tokio-logo"
13
+ width = "133"
14
+ height = "56"
15
+ />
16
+ </ a >
20
17
) ;
21
18
22
19
const Links : FC < { blog : Blog } > = ( { blog } ) => {
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ const Layer: FC<{ layer: StackLayer }> = ({ layer }) => (
106
106
style = { {
107
107
display : "block" ,
108
108
position : "relative" ,
109
- top : "-13rem " ,
109
+ top : "-40vh " ,
110
110
visibility : "hidden" ,
111
111
} }
112
112
/>
You can’t perform that action at this time.
0 commit comments