├── LICENSE ├── README.md ├── config.json ├── index.js ├── main.sh └── website ├── css ├── 404.css ├── about.css ├── home.css └── team.css └── html ├── 404.html ├── about.html ├── home.html └── team.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/index.js -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- 1 | node index.js 2 | -------------------------------------------------------------------------------- /website/css/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/website/css/404.css -------------------------------------------------------------------------------- /website/css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/website/css/about.css -------------------------------------------------------------------------------- /website/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/website/css/home.css -------------------------------------------------------------------------------- /website/css/team.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/website/css/team.css -------------------------------------------------------------------------------- /website/html/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/website/html/404.html -------------------------------------------------------------------------------- /website/html/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/website/html/about.html -------------------------------------------------------------------------------- /website/html/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/website/html/home.html -------------------------------------------------------------------------------- /website/html/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/discord-bot-website/HEAD/website/html/team.html --------------------------------------------------------------------------------