-
-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathSiteFooter.js
More file actions
129 lines (126 loc) · 4.39 KB
/
SiteFooter.js
File metadata and controls
129 lines (126 loc) · 4.39 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import React from "react";
import Link from "gatsby-link";
const SiteFooter = () => {
const currentYear = new Date().getFullYear();
return (
<footer className="bg-white pv5 bt b--black f6 lh-copy">
<div className="container">
<div className="row">
<div className="col-xs-12 col-md-2 nested-list-reset ">
<h6>PostGraphile</h6>
<ul>
<li>
<a href="https://postgraphile.org/postgraphile/5/">
Documentation
</a>
</li>
<li>
<a href="https://postgraphile.org">About</a>
</li>
<li>
<a href="https://postgraphile.org/postgraphile/5/community-plugins">
Community Plugins
</a>
</li>
<li>
<a href="https://postgraphile.org/news">News</a>
</li>
</ul>
</div>
<div className="col-xs-12 col-md-2 nested-list-reset ">
<h6>Graphile Engine</h6>
<ul>
<li>
<a href="https://build.graphile.org/graphile-build/5/">
Documentation
</a>
</li>
<li>
<a href="https://build.graphile.org/">About</a>
</li>
<li>
<a href="https://build.graphile.org/graphile-build/5/plugins">
Plugins
</a>
</li>
</ul>
</div>
<div className="col-xs-12 col-md-2 nested-list-reset">
<h6>Resources</h6>
<ul>
<li>
<Link to="/news/">
<i className="fas fa-bullhorn" /> News
</Link>
</li>
<li>
<a href="https://github.com/graphile">
<i className="fab fa-github" /> GitHub
</a>
</li>
<li>
<a href="http://discord.gg/graphile">
<i className="fab fa-discord" /> Chat (discord)
</a>
</li>
<li>
<a href="https://fosstodon.org/@graphile" rel="me">
<i className="fab fa-mastodon" /> Mastodon
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCPPQNCaD8ukbb5gp1KrYMqA">
<i className="fa fa-play" /> Youtube
</a>
</li>
<li>
<Link to="/news/press-kit/">
<i className="fas fa-file-archive" /> Press Kit
</Link>
</li>
<li>
<a href="https://learn.graphile.org/">
<i className="fas fa-graduation-cap" /> Learn
</a>
</li>
</ul>
</div>
<div className="col-xs-12 col-md-offset-1 col-md-5">
<h6>About</h6>
PostGraphile, Gra<em>fast</em> and all of the Graphile suite of
tools are crowd-funded Open Source Software, developed and
maintained primarily by{" "}
<a href="https://twitter.com/benjie">@Benjie</a> with the help of
the community.
<br />
<br />
You can support the projects via{" "}
<Link to="/sponsor/">sponsorship</Link>, by{" "}
<a href="https://postgraphile.org/pricing">going Pro</a>, or by
paying for <Link to="/support/">Professional Services</Link>. Your
support is gratefully received 🙏
<br />
<br />
This site is copyright © Benjie Gillam {currentYear}. Design
and logos copyright © Benjie Gillam and Jof Arnold{" "}
{currentYear}.
<br />
<br />
Corrections and contributions to this website are gratefully
received via{" "}
<a href="https://github.com/graphile/graphile.github.io">
its GitHub repository
</a>
.
<br />
<br />
PostGraphile was <a href="/history/">originally authored</a> as
PostGraphQL by{" "}
<a href="https://twitter.com/calebmer">Caleb Meredith</a>.
</div>
</div>
</div>
</footer>
);
};
export default SiteFooter;