-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
3,913 additions
and
869 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import express from 'express'; | ||
import { AeonaBot } from '../utils/types'; | ||
import path from 'path'; | ||
export default function website(client: AeonaBot) { | ||
const app = express(); | ||
const port = 8080; | ||
app.use(express.json()); | ||
app.use(express.static('./src/website/public')); | ||
app.set('view engine', 'ejs'); | ||
|
||
const renderTemplate = (res: any, req: any, template: any, data = {}) => { | ||
const baseData = { | ||
name: 'Aeona', | ||
url: '', | ||
alert: null, | ||
alerterror: null, | ||
guilds: client.guilds.cache.size, | ||
members: client.guilds.cache.reduce((a: any, b: any) => a + b.memberCount - 1, 0), | ||
}; | ||
res.render(path.resolve(`./src/website/views/${template}`), Object.assign(baseData, data)); | ||
}; | ||
|
||
app.get('/', async (req, res) => { | ||
renderTemplate(res, req, 'index.ejs'); | ||
}); | ||
|
||
app.get('/invite', async (req, res) => { | ||
res.redirect( | ||
`https://discordapp.com/oauth2/authorize?client_id=${client.user!.id}&scope=bot&PermissionsBitField=8`, | ||
); | ||
}); | ||
app.get('/invite/discord', async (req, res) => { | ||
res.redirect( | ||
`https://discordapp.com/oauth2/authorize?client_id=${client.user!.id}&scope=bot&PermissionsBitField=8`, | ||
); | ||
}); | ||
app.get('/support', async (req, res) => { | ||
res.redirect('https://discord.gg/W8hssA32C9'); | ||
}); | ||
|
||
app.get('/privacy-policy', async (req, res) => { | ||
renderTemplate(res, req, 'privacy-policy.ejs'); | ||
}); | ||
|
||
app.get('/premium', async (req, res) => { | ||
renderTemplate(res, req, 'premium.ejs'); | ||
}); | ||
|
||
app.listen(port, () => { | ||
return console.log(`http://localhost:${port}`); | ||
}); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,206 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
::-webkit-scrollbar { | ||
background: transparent; | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
background: rgba(255 255 255/24%); | ||
} | ||
|
||
.background { | ||
position: absolute; | ||
color: rgba(255 255 255/24%); | ||
height: 100%; | ||
width: 100vw; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
z-index: -100; | ||
} | ||
|
||
.mouse { | ||
width: 50px; | ||
height: 90px; | ||
border: 3px solid hsl(var(--bc)); | ||
border-radius: 60px; | ||
position: relative; | ||
} | ||
|
||
.cut-text { | ||
text-overflow: ellipsis; | ||
overflow: hidden; | ||
width: 50%; | ||
white-space: nowrap; | ||
} | ||
|
||
.mouse::before { | ||
content: ""; | ||
width: 12px; | ||
height: 12px; | ||
position: absolute; | ||
top: 10px; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
background-color: hsl(var(--bc)); | ||
border-radius: 50%; | ||
opacity: 1; | ||
animation: wheel 2s infinite; | ||
-webkit-animation: wheel 2s infinite; | ||
} | ||
|
||
@keyframes wheel { | ||
to { | ||
opacity: 0; | ||
top: 60px; | ||
} | ||
} | ||
|
||
@-webkit-keyframes wheel { | ||
to { | ||
opacity: 0; | ||
top: 60px; | ||
} | ||
} | ||
|
||
.discord-custom-emoji { | ||
transform: translateY(6px); | ||
} | ||
|
||
.discord-embed-wrapper { | ||
background-color: transparent !important; | ||
} | ||
|
||
.discord-replied-message-content { | ||
max-height: 18px; | ||
} | ||
|
||
.btn { | ||
-webkit-appearance: none; | ||
appearance: none; | ||
cursor: pointer; | ||
position: relative; | ||
transition: transform ease-in 0.1s, box-shadow ease-in 0.25s; | ||
} | ||
|
||
.btn:focus { | ||
outline: 0; | ||
} | ||
|
||
.btn:before, | ||
.btn:after { | ||
position: absolute; | ||
content: ""; | ||
display: block; | ||
width: 140%; | ||
height: 100%; | ||
left: -20%; | ||
z-index: -1000; | ||
transition: all ease-in-out 1s; | ||
background-repeat: no-repeat; | ||
} | ||
|
||
.btn:before { | ||
display: none; | ||
top: -75%; | ||
background-image: radial-gradient(circle, #ff0081 20%, transparent 20%), | ||
radial-gradient(circle, transparent 20%, #ff0081 20%, transparent 30%), radial-gradient(circle, #ff0081 20%, transparent 20%), | ||
radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ff0081 15%, transparent 20%), | ||
radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), | ||
radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%); | ||
background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%; | ||
} | ||
|
||
.btn:after { | ||
display: none; | ||
bottom: -75%; | ||
background-image: radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), | ||
radial-gradient(circle, transparent 10%, #ff0081 15%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), | ||
radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), | ||
radial-gradient(circle, #ff0081 20%, transparent 20%); | ||
background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%; | ||
} | ||
.btn:hover { | ||
background-color: #e60074 !important; | ||
border-color: #e60074 !important; | ||
box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2); | ||
transform: scale(0.9); | ||
} | ||
|
||
.btn:active { | ||
transform: scale(0.9); | ||
background-color: #e60074 !important; | ||
border-color: #e60074 !important; | ||
box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2); | ||
} | ||
|
||
.btn.animate:before { | ||
display: block; | ||
animation: topBubbles ease-in-out 0.75s forwards; | ||
} | ||
|
||
.btn.animate:after { | ||
display: block; | ||
animation: bottomBubbles ease-in-out 0.75s forwards; | ||
} | ||
|
||
@keyframes topBubbles { | ||
0% { | ||
background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%; | ||
} | ||
|
||
50% { | ||
background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%; | ||
} | ||
|
||
100% { | ||
background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%; | ||
background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; | ||
} | ||
} | ||
|
||
@keyframes bottomBubbles { | ||
0% { | ||
background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%; | ||
} | ||
|
||
50% { | ||
background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%; | ||
} | ||
|
||
100% { | ||
background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%; | ||
background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; | ||
} | ||
} | ||
|
||
@keyframes float { | ||
0% { | ||
box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); | ||
transform: translatey(0px); | ||
} | ||
50% { | ||
box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2); | ||
transform: translatey(-20px); | ||
} | ||
100% { | ||
box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); | ||
transform: translatey(0px); | ||
} | ||
} | ||
|
||
.float { | ||
animation: float 6s ease-in-out infinite; | ||
} | ||
@import url("https://fonts.googleapis.com/css2?family=Nerko+One&display=swap"); | ||
.glass2 { | ||
backdrop-filter: blur(1px); | ||
-webkit-backdrop-filter: blur(1px); | ||
|
||
background-color: rgba(17, 25, 40, 0.25); | ||
border-radius: 12px; | ||
border: 1px solid rgba(255, 255, 255, 0.125); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<%- include("./partials/head", { options, title: options.name+" | Best Multipurpose AI Chatbot For Discord" }) %> | ||
|
||
<%- include("./partials/footer") %> |
Oops, something went wrong.