-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
65 lines (55 loc) · 1.79 KB
/
index.jsx
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
import Footer from './footer'
export { Footer }
export { default as goa } from './goa'
export const Sponsor = () => {
return <table>
<tr/>
<tr>
<td align="center">
<a href="https://www.technation.sucks">
<img src="https://raw.githubusercontent.com/artdecoweb/www.technation.sucks/master/anim.gif" alt="Tech Nation Visa"/>
</a><br/>
Sponsored by <a href="https://www.technation.sucks">Tech Nation Visa Sucks</a>.
</td>
</tr>
</table>
}
export const IdioFooter = () => {
return <Footer client="Idio"
clientLink="https://idio.cc"
clientLogo="https://avatars3.githubusercontent.com/u/40834161?s=100"/>
}
export const WroteFooter = () => {
return <Footer client="Wrote"
clientLink="https://wrote.cc"
clientLogo="https://avatars3.githubusercontent.com/u/40831417?s=100"/>
}
export const ÀLaModeFooter = () => {
return <Footer client="À La Mode"
clientLink="https://alamode.cc" />
}
export const DepackFooter = () => {
return <Footer client="Depack"
clientLink="https://artd.eco/depack" />
}
export const ContextTestingFooter = () => {
return (<Footer client="ContextTesting"
clientLogo="https://avatars1.githubusercontent.com/u/44418436?s=100"
clientLink="https://www.contexttesting.com" />)
}
import Render, { screenshot } from './Render'
export const Externs = ({ namespace }) => {
return `The types and [externs](externs.js) for _Google Closure Compiler_ via [**_Depack_**](https:/`+`/github.com/dpck/depack) are defined in the \`${namespace}\` namespace.`
}
export default {
footer: Footer,
Render,
render: Render,
screenshot,
'idio-footer': IdioFooter,
'wrote-footer': WroteFooter,
'alamode-footer': ÀLaModeFooter,
'depack-footer': DepackFooter,
'context-testing-footer': ContextTestingFooter,
'externs': Externs,
}