Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit a3a35e8

Browse files
author
george
committed
add credits to gavin folgert for his amazing animation skillz
1 parent 67e3de5 commit a3a35e8

File tree

6 files changed

+36
-27
lines changed

6 files changed

+36
-27
lines changed

app/components/Footer/Footer.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,19 @@ export default function Footer(props) {
1111
<div className="row">
1212
<div className="has-no-padding column">
1313
<p className="has-center-text has-gray900-text">
14-
Undernet is front-end framework created and maintained by{" "}
14+
Undernet is a front-end framework created and maintained by{" "}
1515
<a className="has-white-text" href="http://www.geotrev.com">
1616
George Treviranus
1717
</a>
1818
.
1919
</p>
20+
<p className="has-center-text has-gray900-text">
21+
Animations provided by{" "}
22+
<a className="has-white-text" href="https://folgert.com/">
23+
Gavin Folgert
24+
</a>
25+
. ❤️
26+
</p>
2027
<ul className="has-center-text has-gray900-text is-unstyled-list is-flex-row is-flex is-justified-center">
2128
<li role="none">
2229
<a

app/components/Footer/__tests__/__snapshots__/Footer.spec.js.snap

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ exports[`<Footer /> renders 1`] = `
1616
<p
1717
className="has-center-text has-gray900-text"
1818
>
19-
Undernet is front-end framework created and maintained by
19+
Undernet is a front-end framework created and maintained by
2020
2121
<a
2222
className="has-white-text"
@@ -26,6 +26,19 @@ exports[`<Footer /> renders 1`] = `
2626
</a>
2727
.
2828
</p>
29+
<p
30+
className="has-center-text has-gray900-text"
31+
>
32+
Animations provided by
33+
34+
<a
35+
className="has-white-text"
36+
href="https://folgert.com/"
37+
>
38+
Gavin Folgert
39+
</a>
40+
. ❤️
41+
</p>
2942
<ul
3043
className="has-center-text has-gray900-text is-unstyled-list is-flex-row is-flex is-justified-center"
3144
>

app/layouts/Main/__tests__/__snapshots__/Main.spec.js.snap

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ exports[`<Main /> #render renders 1`] = `
262262
<p
263263
className="has-center-text has-gray900-text"
264264
>
265-
Undernet is front-end framework created and maintained by
265+
Undernet is a front-end framework created and maintained by
266266
267267
<a
268268
className="has-white-text"
@@ -272,6 +272,19 @@ exports[`<Main /> #render renders 1`] = `
272272
</a>
273273
.
274274
</p>
275+
<p
276+
className="has-center-text has-gray900-text"
277+
>
278+
Animations provided by
279+
280+
<a
281+
className="has-white-text"
282+
href="https://folgert.com/"
283+
>
284+
Gavin Folgert
285+
</a>
286+
. ❤️
287+
</p>
275288
<ul
276289
className="has-center-text has-gray900-text is-unstyled-list is-flex-row is-flex is-justified-center"
277290
>

app/pages/Home/Home.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,6 @@ export default class Home extends React.Component {
110110
<div className="column has-no-padding">
111111
<div className="wide grid">
112112
<ul className="row is-unstyled-list has-no-padding">{this.renderAnimations()}</ul>
113-
<div className="row has-padding-top-3">
114-
<p className="column has-center-text has-white-text credit-text">
115-
Animations provided by <a href="https://folgert.com/">Gavin Folgert</a>. ❤️
116-
</p>
117-
</div>
118113
</div>
119114
</div>
120115
</div>

app/pages/Home/__tests__/__snapshots__/Home.spec.js.snap

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -235,21 +235,6 @@ exports[`<Home /> renders 1`] = `
235235
</p>
236236
</li>
237237
</ul>
238-
<div
239-
className="row has-padding-top-3"
240-
>
241-
<p
242-
className="column has-center-text has-white-text credit-text"
243-
>
244-
Animations provided by
245-
<a
246-
href="https://folgert.com/"
247-
>
248-
Gavin Folgert
249-
</a>
250-
. ❤️
251-
</p>
252-
</div>
253238
</div>
254239
</div>
255240
</div>

app/pages/Home/styles.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@
6464
margin-bottom: 24px;
6565
}
6666
}
67-
68-
.credit-text {
69-
opacity: 0.6;
70-
}
7167
}
7268

7369
a.has-gradient {

0 commit comments

Comments
 (0)