-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (114 loc) · 5.18 KB
/
index.html
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="en-us" class="has-background-dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Europa - Home</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel = "stylesheet" type = "text/css" href = "styles.css"/>
<link rel="icon" href="images/SummerEuropaPFPSmall.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(() => $("#nav-bar").load("nav.html"))
</script>
</head>
<body>
<div id="nav-bar"></div>
<div class="container">
<h1 class="title is-2 has-text-light">Features<hr></h1><br>
<div class="columns is-vcentered ml-1">
<div class="column">
<h1 class="title is-4 has-text-white">Customizable Spark Profile</h1>
<div class="block has-text-grey-light">Granblue Fantasy themed profile card with a customizable background.</div>
</div>
<div class="column has-text-centered">
<img src="images/EuropaSparkProfile.png">
</div>
</div><br>
<div class="columns is-vcentered ml-1">
<div class="column">
<h1 class="title is-4 has-text-white">Customizable Welcome Message</h1>
<div class="block has-text-grey-light">Sends messages when users join the server, leave the server, or get banned from the server. Also has the ability to give the user roles when they join the server.</div>
<div class="block has-text-grey-light">Customize the background, the channel, join messages, leave messages, and ban messages.</div>
<div class="block has-text-grey-light">Settings allow for granular control over which features are enabled or disabled.</div>
</div>
<div class="column has-text-centered">
<img class="bordered" src="images/EuropaGreeting.png">
</div>
</div><br>
<div class="columns is-vcentered ml-1">
<div class="column">
<h1 class="title is-4 has-text-white">Player Search</h1>
<div class="block has-text-grey-light">Search for a player by ID or player name.</div>
<div class="block has-text-grey-light">Displays an image containing the player's profile page, support summons, and star character.</div>
</div>
<div class="column has-text-centered">
<img class="bordered" src="gifs/PlayerSearch.gif">
</div>
</div><br>
<div class="columns is-vcentered ml-1">
<div class="column">
<h1 class="title is-4 has-text-white">Crew Search</h1>
<div class="block has-text-grey-light">
Search for a crew by ID or crew name.
</div>
<div class="block has-text-grey-light">
Displays a screenshot of the crew page and lists the crew's rank in the last GW as well as the crew's name history.
</div>
</div>
<div class="column has-text-centered">
<img class="bordered" src="gifs/CrewSearch.gif">
</div>
</div><br>
<div class="columns is-vcentered ml-1">
<div class="column">
<h1 class="title is-4 has-text-white">Events</h1>
<div class="block has-text-grey-light">
Shows current and upcoming events.
</div>
<div class="block has-text-grey-light">
Tells you how much time is left in current events and tells you when upcoming events start.
</div>
</div>
<div class="column has-text-centered">
<img src="images/EuropaEvents.png">
</div>
</div><br>
<div class="columns is-vcentered ml-1">
<div class="column">
<h1 class="title is-4 has-text-white">Draw from the current banner</h1>
<div class="block has-text-grey-light">
Use any amount of single rolls or 10-part tickets to draw from the current banner, or draw until you get a certain character or summon.
</div>
</div>
<div class="column has-text-centered">
<img class="bordered" src="images/Europa Gacha Simulator.png">
</div>
</div><br>
<div class="columns is-vcentered ml-1">
<div class="column">
<h1 class="title is-4 has-text-white">Automatically Updated Nicknames</h1>
<div class="block has-text-grey-light">
Automatically updates the spark counter in your nickname when you update your spark funds. Accepted formats: (000/300) & 00.00%
</div>
<div class="block has-text-grey-light">
Europa's role must be in a higher position than the roles of those whose nicknames she is trying to update in order for this to work.
</div>
<div class="block has-text-grey-light">
This feature does not work for the server owner due to a Discord limitation.
</div>
</div>
<div class="column has-text-centered">
<img class="bordered" src="gifs/NicknameUpdater.gif">
</div>
</div><br>
</div>
<footer class="footer has-background-dark">
<div class="content has-text-centered has-text-white">
<p id="contact">
Got a concern, suggestion, or request? Join the <a class="has-text-link" href="https://discordapp.com/invite/YtwzVSp">Europa Support Server</a>.
</p>
</div>
</footer>
</body>
</html>