1
1
/** @type {import('@docusaurus/types').DocusaurusConfig } */
2
2
module . exports = {
3
3
title : "TypeScriptToLua" ,
4
- // TODO: Remove
5
- tagline : "" ,
4
+ organizationName : "TypeScriptToLua" ,
6
5
url : "https://typescripttolua.github.io" ,
7
6
baseUrl : "/" ,
8
7
favicon : "images/favicon.ico" ,
@@ -17,6 +16,55 @@ module.exports = {
17
16
{ href : "https://github.com/TypeScriptToLua/TypeScriptToLua" , label : "GitHub" , position : "right" } ,
18
17
] ,
19
18
} ,
19
+ footer : {
20
+ logo : {
21
+ alt : "TypescriptToLua Logo" ,
22
+ src : "images/logo.png" ,
23
+ href : "https://github.com/TypescriptToLua" ,
24
+ } ,
25
+ links : [
26
+ {
27
+ title : "Docs" ,
28
+ items : [
29
+ {
30
+ label : "Getting Started" ,
31
+ to : "docs/getting-started" ,
32
+ } ,
33
+ {
34
+ label : "Configuration" ,
35
+ to : "docs/configuration" ,
36
+ } ,
37
+ {
38
+ label : "Advanced" ,
39
+ to : "docs/advanced/writing-declarations" ,
40
+ } ,
41
+ ] ,
42
+ } ,
43
+ {
44
+ title : "Community" ,
45
+ items : [
46
+ {
47
+ label : "Discord" ,
48
+ href : "https://discord.gg/BWAq58Y" ,
49
+ } ,
50
+ ] ,
51
+ } ,
52
+ {
53
+ title : "More" ,
54
+ items : [
55
+ {
56
+ label : "Github" ,
57
+ href : "https://github.com/TypeScriptToLua" ,
58
+ } ,
59
+ {
60
+ label : "Playground" ,
61
+ to : "play" ,
62
+ } ,
63
+ ] ,
64
+ } ,
65
+ ] ,
66
+ copyright : `Copyright © ${ new Date ( ) . getFullYear ( ) } TypescriptToLua Contributors` ,
67
+ } ,
20
68
prism : {
21
69
additionalLanguages : [ "lua" ] ,
22
70
theme : require ( "prism-react-renderer/themes/github" ) ,
0 commit comments