File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ import React from "react"
2
2
import Link from "../Link"
3
3
4
4
interface LinkItem {
5
- text :string ,
6
- href :string
5
+ text : string
6
+ href : string
7
7
}
8
8
9
9
interface FooterLinks {
10
- text :string ,
11
- href ?:string ,
10
+ text : string
11
+ href ?: string
12
12
subsections : LinkItem [ ]
13
13
}
14
14
@@ -60,6 +60,7 @@ const getLinks = (sourcePath: string): FooterLinks[] => [
60
60
} ,
61
61
{
62
62
text : "GraphQL Foundation" ,
63
+ href : "/foundation/" ,
63
64
subsections : [
64
65
{ text : "About" , href : "/foundation/" } ,
65
66
{ text : "Join" , href : "/foundation/join/" } ,
@@ -71,7 +72,7 @@ const getLinks = (sourcePath: string): FooterLinks[] => [
71
72
} ,
72
73
]
73
74
74
- const Footer = ( { sourcePath} : { sourcePath : string } ) => {
75
+ const Footer = ( { sourcePath } : { sourcePath : string } ) => {
75
76
return (
76
77
< div >
77
78
< footer >
@@ -107,7 +108,6 @@ const Footer = ({sourcePath}: { sourcePath: string }) => {
107
108
and < a href = "http://www.linuxfoundation.org/terms" > Terms of Use</ a > .
108
109
</ section >
109
110
</ footer >
110
-
111
111
</ div >
112
112
)
113
113
}
You can’t perform that action at this time.
0 commit comments