-
Notifications
You must be signed in to change notification settings - Fork 826
Expand file tree
/
Copy pathnavigation.ts
More file actions
86 lines (81 loc) · 2.14 KB
/
Copy pathnavigation.ts
File metadata and controls
86 lines (81 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
export interface NavItem {
label: string;
href: string;
external?: boolean;
}
export const primaryNav: NavItem[] = [
{ label: "Home", href: "/" },
{ label: "Install", href: "/install/" },
{ label: "Learning", href: "/learning/" },
{ label: "Docs", href: "/docs/" },
{ label: "Case studies", href: "/cases/" },
{ label: "Blog", href: "/blog/" },
];
export const headerCta: NavItem = {
label: "Get started",
href: "https://hexdocs.pm/elixir/introduction.html",
external: true,
};
export const footerColumns: { title: string; items: NavItem[] }[] = [
{
title: "Important links",
items: [
{
label: "Hex.pm package manager",
href: "https://hex.pm",
external: true,
},
{ label: "Development & team", href: "/development/" },
{
label: "Issues tracker",
href: "https://github.com/elixir-lang/elixir/issues",
external: true,
},
{
label: "Erlang Ecosystem Foundation",
href: "https://erlef.org/",
external: true,
},
],
},
{
title: "Join the community",
items: [
{
label: "Elixir Forum",
href: "https://elixirforum.com",
external: true,
},
{
label: "Meetups around the world",
href: "https://www.meetup.com/topics/elixir/",
external: true,
},
{
label: "Jobs & hiring (wiki)",
href: "https://github.com/elixir-lang/elixir/wiki/Hiring-Elixir-Developers",
external: true,
},
{
label: "Events & resources (wiki)",
href: "https://github.com/elixir-lang/elixir/wiki",
external: true,
},
{
label: "#elixir on irc.libera.chat",
href: "https://web.libera.chat/#elixir",
external: true,
},
],
},
];
export const footerSocials: NavItem[] = [
{
label: "Source",
href: "https://github.com/elixir-lang/elixir",
external: true,
},
{ label: "Slack", href: "https://elixir-slack.community", external: true },
{ label: "Discord", href: "https://discord.gg/elixir", external: true },
];
export const topBannerHref = "https://elixirconf.com";