-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpagic.config.tsx
49 lines (48 loc) · 1.71 KB
/
pagic.config.tsx
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
// @deno-types="https://deno.land/x/pagic@v0.9.1/src/types/react/v16.13.1/react.d.ts"
import React from 'https://dev.jspm.io/react@16.13.1'
export default {
srcDir: 'site',
theme: 'docs',
plugins: ['sidebar', 'prev_next'],
title: 'Deno Algorithm',
description: 'Deno Algorithm, learn Algorithms in Deno and TypeScript',
github: 'https://github.com/hylerrix/deno-algorithm',
head: (<link rel="icon" type="image/png" href="/favicon.png" />),
nav: [
{ text: 'Articles', link: '/articles/' },
{
text: 'Coffee!!',
link: 'http://qiniu.ningo.cloud/hylerrix/reward-alipay.png',
target: '_blank',
popover: (
<>
<img src="http://qiniu.ningo.cloud/hylerrix/reward-alipay.png" width="256" style={{ marginRight: '1rem', verticalAlign: 'top' }} />
<img src="http://qiniu.ningo.cloud/hylerrix/reward-wechat.png" width="256" style={{ verticalAlign: 'top' }} />
</>
)
},
{ text: 'Deno Tutorial', target: '_blank', link: 'https://github.com/hylerrix/deno-tutorial' },
{ text: 'React Fullstack Handbook', target: '_blank', link: 'https://github.com/hylerrix/fullstack-react' },
{ text: 'TBD...', target: '_blank', link: 'https://github.com/hylerrix' },
{
text: 'NingoWood',
link: 'https://github.com/ningowood',
target: '_blank',
popover: (
<img src="http://qiniu.ningo.cloud/ningo/official-qrcode.png" width="256" style={{ verticalAlign: 'top' }} />
)
},
{ text: 'About', target: '_blank', link: 'https://github.com/hylerrix' },
],
sidebar: {
'/articles/': [
'articles/README.md',
// 'articles/THANKS.md',
],
},
tools: {
editOnGithub: true,
backToTop: true
},
port: 8011
}