Skip to content

Commit 7d96753

Browse files
committed
Reorganize and expand the footer
Signed-off-by: Brian Warner <[email protected]>
1 parent 9e93639 commit 7d96753

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

src/components/Footer/index.tsx

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,19 @@ const getLinks = (sourcePath: string): FooterLinks[] => [
2525
],
2626
},
2727
{
28-
text: "Code",
28+
text: "Spec and Code",
2929
href: "/code",
3030
subsections: [
31+
{ text: "Specification", href: "https://spec.graphql.org" },
3132
{ text: "Languages", href: "/code/#languages" },
3233
{ text: "Tools", href: "/code/#tools" },
3334
{ text: "Services", href: "/code/#services" },
35+
{
36+
text: "Edit this page ✎",
37+
href:
38+
"https://github.com/graphql/graphql.github.io/edit/source/" +
39+
sourcePath,
40+
},
3441
],
3542
},
3643
{
@@ -52,23 +59,14 @@ const getLinks = (sourcePath: string): FooterLinks[] => [
5259
],
5360
},
5461
{
55-
text: "More",
62+
text: "GraphQL Foundation",
5663
subsections: [
57-
{
58-
text: "GraphQL Specification",
59-
href: "https://spec.graphql.org/",
60-
},
61-
{ text: "GraphQL Foundation", href: "https://foundation.graphql.org/" },
62-
{
63-
text: "GraphQL GitHub",
64-
href: "https://github.com/graphql",
65-
},
66-
{
67-
text: "Edit this page ✎",
68-
href:
69-
"https://github.com/graphql/graphql.github.io/edit/source/" +
70-
sourcePath,
71-
},
64+
{ text: "About", href: "/foundation/" },
65+
{ text: "Join", href: "/foundation/join/" },
66+
{ text: "Current members", href: "/foundation/members/" },
67+
{ text: "Landscape", href: "https://landscape.graphql.org" },
68+
{ text: "Artwork", href: "https://github.com/graphql/artwork" },
69+
{ text: "Contact", href: "/foundation/contact/" },
7270
],
7371
},
7472
]

0 commit comments

Comments
 (0)