-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.config.js
94 lines (86 loc) · 4.17 KB
/
theme.config.js
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
import Script from 'next/script'
import AuthorCard from './components/Authorcard'
export default {
github: 'https://github.com/fauna-labs/aws-workshop',
docsRepositoryBase: 'https://github.com/fauna-labs/aws-workshop',
titleSuffix: 'Fauna',
logo: (
<>
<img style={{ width: '100px' }} className="mr-2 font-extrabold hidden md:inline" src="https://images.ctfassets.net/po4qc9xpmpuh/7itYmeRxmVGIXwwGWHrQU3/42f3e7fa7d39fab5b6222f6199f0203c/Fauna_Logo.svg" alt="Nextra" />
<span className="text-gray-600 font-normal hidden md:inline" style={{ marginTop: '10px' }}>
Cloudflare Fauna Workshop
</span>
</>
),
head: (
<>
<title>Fauna Cloudflare Workshop ~ Build a globally distributed full-stack app using Cloudflare Pages, Next.js and Fauna</title>
<meta name="title" content="Fauna Cloudflare Workshop ~ Building a globally distributed full stack app with Fauna and Cloudflare"/>
<meta name="description" content="This hands-on guide walks you through building a globally distributed full-stack application with Cloudflare Pages + Fauna"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://fauna.com"/>
<meta property="og:title" content="Fauna Cloudflare Workshop ~ Building a globally distributed full stack app with Fauna and Cloudflare"/>
<meta property="og:description" content="This hands-on guide walks you through building a globally distributed full-stack application with Cloudflare Pages + Fauna"/>
<meta property="og:image" content="https://workshop-shadid.s3.amazonaws.com/cloudflare-3.png"/>
<meta name="twitter:site" content="@fauna" />
<meta property="twitter:card" content="summary_large_image"/>
<meta property="twitter:url" content="https://fauna.com"/>
<meta property="twitter:title" content="Fauna Cloudflare Workshop ~ Building a globally distributed full stack app with Fauna and Cloudflare"/>
<meta property="twitter:description" content="This hands-on guide walks you through building a globally distributed full-stack application with Cloudflare Pages + Fauna"/>
<meta property="twitter:image" content="https://workshop-shadid.s3.amazonaws.com/cloudflare-3.png"/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://images.ctfassets.net/po4qc9xpmpuh/7itYmeRxmVGIXwwGWHrQU3/42f3e7fa7d39fab5b6222f6199f0203c/Fauna_Logo.svg"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="https://images.ctfassets.net/po4qc9xpmpuh/7itYmeRxmVGIXwwGWHrQU3/42f3e7fa7d39fab5b6222f6199f0203c/Fauna_Logo.svg"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://images.ctfassets.net/po4qc9xpmpuh/7itYmeRxmVGIXwwGWHrQU3/42f3e7fa7d39fab5b6222f6199f0203c/Fauna_Logo.svg"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="https://images.ctfassets.net/po4qc9xpmpuh/7itYmeRxmVGIXwwGWHrQU3/42f3e7fa7d39fab5b6222f6199f0203c/Fauna_Logo.svg"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://images.ctfassets.net/po4qc9xpmpuh/7itYmeRxmVGIXwwGWHrQU3/42f3e7fa7d39fab5b6222f6199f0203c/Fauna_Logo.svg"
/>
</>
),
search: true,
prevLinks: true,
nextLinks: true,
unstable_flexsearch: true,
feedbackLabels: "Learn More @",
projectLink: 'https://github.com/fauna-labs/cf-workshop',
floatTOC: true,
feedbackLink: () => {
return (
<>
<h4>Contributors</h4>
<AuthorCard />
<a style={{ fontSize: '16px', color: 'rgb(58,26,182)' }} href="https://github.com/fauna-labs" target="_blank">🧪 Fauna Labs</a>
<br />
<a style={{ fontSize: '16px', color: 'rgb(58,26,182)' }} href="https://docs.fauna.com/fauna/current/" target="_blank">📗 Docs</a>
<br />
<a style={{ fontSize: '16px', color: 'rgb(58,26,182)' }} href="https://docs.fauna.com/fauna/current/learn/sample_apps/" target="_blank">🤖 Sample Apps</a>
</>
);
},
footer: false,
footerEditLink: '',
footerText: <>MIT-0 {new Date().getFullYear()} © Fauna Inc.</>,
unstable_faviconGlyph: '',
}