forked from mohitmimani/Discord-Bot-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
73 lines (71 loc) · 2.49 KB
/
config.js
File metadata and controls
73 lines (71 loc) · 2.49 KB
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
import { BsFacebook, BsYoutube } from "react-icons/bs";
import { CgCrown } from "react-icons/cg";
import { FaDiscord } from "react-icons/fa";
import { MdAddModerator } from "react-icons/md";
import { SiProbot } from "react-icons/si";
import { TbMessage2Code } from "react-icons/tb";
const config = {
name: "Ayra",
//BotName
inviteLink:
"https://discord.com/oauth2/authorize?client_id=1090567188227817523&permissions=178616284561198&scope=bot&redirect_uri=https://docs.markos.ga&response_type=code",
//BotInvite Link
Features: [
{
name: "Moderation",
description:
"Moderation is the process of eliminating or lessening extremes.",
logo: <MdAddModerator className="h-10 w-10" />,
},
{
name: "99% Uptime",
description:
"Uptime is a measure of system reliability, expressed as the percentage of time a machine, typically a computer.",
logo: <SiProbot className="h-10 w-10" />,
},
{
name: "Automation",
description:
"Automation describes a wide range of technologies that reduce human intervention in processes.",
logo: <TbMessage2Code className="h-10 w-10" />,
},
{
name: "Welcomer",
description:
"Welcomer is the person who greet the new person in an unique and great way",
logo: <CgCrown className="h-10 w-10" />,
},
{
name: "Leveling",
description:
"Welcomer is the person who greet the new person in an unique and great way",
logo: <CgCrown className="h-10 w-10" />,
},
{
name: "Fun, Actions and more",
description:
"Welcomer is the person who greet the new person in an unique and great way",
logo: <CgCrown className="h-10 w-10" />,
},
// You can added more features if need add
],
//Bot Features
serverCount: 300, //- - Your
memberCount: 700, //-- - Bot
executedCommand: 27000, //-- - Stats
availableCommand: 400, //--- - Here
//Do not change if you don't know about them
faceBookLogo: (
<BsFacebook className="h-10 w-10 text-[#4267B2] hover:scale-125 easeIn cursor-pointer" />
),
discordLogo: (
<FaDiscord className="h-10 w-10 text-[#738adb] hover:scale-125 easeIn cursor-pointer" />
),
//----------------------------------------------------------------
// Your social handle links
githubLink: "https://github.com/UndefinedBlastro",
twitterLink: "https://twitter.com",
facebookLink: "https://facebook.com",
discordLink: "https://discord.gg/ayra",
};
export default config;