-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
executable file
·110 lines (109 loc) · 2.9 KB
/
docusaurus.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
module.exports = {
title: "BTNGĐ",
tagline:
"Là những nhóm tế bào yêu mến Chúa, là nơi lan tỏa tình yêu thương thật và môn đồ hóa cho Đấng Christ",
url: "https://btngiadinh.com",
baseUrl: "/",
favicon: "img/favicon.ico",
organizationName: "nampdn", // Usually your GitHub org/user name.
projectName: "btngd-website", // Usually your repo name.
themeConfig: {
navbar: {
title: "BTNGĐ",
logo: {
alt: "My Facebook Project Logo",
src: "img/logo.svg"
},
links: [
{ to: "docs/lich-sinh-hoat", label: "Tài Liệu", position: "left" },
{ to: "blog", label: "Blog", position: "left" },
// Please keep GitHub link to the right for consistency.
{
href: "https://app.btngiadinh.com",
label: "App",
position: "right"
}
]
},
footer: {
style: "dark",
links: [
{
title: "Tài Liệu",
items: [
{
label: "Nhóm Nhỏ",
to: "docs/doc1"
},
{
label: "Học Kinh Thánh",
to: "docs/doc2"
},
{
label: "Thánh Ca Tin Lành",
to: "docs/thanh-ca"
}
]
},
{
title: "Hội Thánh",
items: [
{
label: "Hội Thánh Tin Lành Việt Nam",
href: "https://httlvn.org/"
},
{
label: "Chi Hội Gia Định",
href: "https://www.facebook.com/hoithanhtinlanhGiaDinh/"
}
]
},
{
title: "Liên Kết",
items: [
{
label: "Blog",
to: "blog"
},
{
label: "Fanpage",
href: "https://www.facebook.com/btn.giadinh/"
},
{
label: "App Điều Hành Ban Ngành",
href: "https://app.btngiadinh.com"
}
]
}
],
// logo: {
// alt: "Facebook Open Source Logo",
// src: "img/oss_logo.png",
// href: "https://opensource.facebook.com/"
// },
// Please do not remove the credits, help to publicize Docusaurus :)
copyright: `Copyright © ${new Date().getFullYear()} BTN Gia Định.`
}
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
editUrl:
"https://github.com/nampdn/btngd-website/edit/master/website/"
},
theme: {
customCss: require.resolve("./src/css/custom.css")
}
}
]
]
};