Skip to content

Commit 5f91b65

Browse files
committed
Add link to blog; make formatting consistent
Signed-off-by: Brian Warner <[email protected]>
1 parent 422ff72 commit 5f91b65

File tree

1 file changed

+31
-6
lines changed

1 file changed

+31
-6
lines changed

src/components/HeaderLinks/index.tsx

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,46 @@ interface LinkItem {
88
}
99

1010
const links: LinkItem[] = [
11-
{ section: "learn", text: "Learn", href: "/learn/" },
12-
{ section: "code", text: "Code", href: "/code/" },
13-
{ section: "community", text: "Community", href: "/community/" },
14-
{ section: "faq", text: "FAQ", href: "/faq/" },
11+
{
12+
section: "learn",
13+
text: "Learn",
14+
href: "/learn/"
15+
},
16+
{
17+
section: "code",
18+
text: "Code",
19+
href: "/code/"
20+
},
21+
{
22+
section: "community",
23+
text: "Community",
24+
href: "/community/"
25+
},
26+
{
27+
section: "faq",
28+
text: "FAQ",
29+
href: "/faq/"
30+
},
1531
{
1632
section: "spec",
1733
text: "Spec",
18-
href: "https://graphql.github.io/graphql-spec/",
34+
href: "https://spec.graphql.org/",
1935
},
2036
{
2137
section: "foundation",
2238
text: "Foundation",
2339
href: "/foundation/",
2440
},
25-
{ section: "landscape", text: "Landscape", href: "https://l.graphql.org/" },
41+
{
42+
section: "news",
43+
text: "News",
44+
href: "/blog/",
45+
},
46+
{
47+
section: "landscape",
48+
text: "Landscape",
49+
href: "https://l.graphql.org/"
50+
},
2651
]
2752

2853
export default () => (

0 commit comments

Comments
 (0)