diff --git a/website/src/components/home/reviews/index.tsx b/website/src/components/home/reviews/index.tsx index 567dc4b7c..706da1603 100644 --- a/website/src/components/home/reviews/index.tsx +++ b/website/src/components/home/reviews/index.tsx @@ -4,7 +4,6 @@ import { ReviewsElementWrapper, ReviewsHeader, ReviewsLeft, - ReviewsOther, ReviewsOtherContainer, ReviewsRight, ReviewsSection, @@ -45,7 +44,7 @@ const reviewList: IReview[] = [ 'https://cdn.discordapp.com/avatars/1032699319368814652/8abbc5911333d3df288ff962a2120d75.png', invite_url: 'https://discord.com/oauth2/authorize?client_id=1032699319368814652&permissions=274877959232&scope=bot%20applications.commands', - guild_count: 41000, + guild_count: 50000, }, developer: { username: '8au', @@ -58,6 +57,28 @@ const reviewList: IReview[] = [ to: 614, }, }, + { + review: `Before finding Discordeno, Appy was having daily outages and using significant amounts of memory due to the inefficient caching defaults of Disnake. Discordeno has provided an amazing developer experience and helped free up much of my system resources.`, + bot: { + username: 'Appy', + discriminator: '0756', + avatar: + 'https://cdn.discordapp.com/avatars/853327905357561948/a394518e742643f05cc201249d3ae75e.png', + invite_url: + 'https://discord.com/oauth2/authorize?client_id=853327905357561948&scope=bot&permissions=534925798592', + guild_count: 82000, + }, + developer: { + username: '8au', + discriminator: '7840', + }, + stars: 5, + previous_library: 'DISNAKE', + memory_improvement: { + from: 7800, + to: 3700, + }, + }, { review: `The library prioritizes the needs and opinions of its core users, and offers a straightforward yet highly customizable implementation. The Core Contributors bring their extensive experience in developing large-scale bots.`, bot: { diff --git a/website/src/styling/index.css b/website/src/styling/index.css index 20f20521a..9a3f692f4 100644 --- a/website/src/styling/index.css +++ b/website/src/styling/index.css @@ -34,5 +34,5 @@ --ifm-navbar-background-color: #0f0f0f; --ifm-footer-color: #fff; --ifm-footer-link-color: #cfcfcf; - --ifm-footer-background-color: #0c0c0c; -} \ No newline at end of file + --ifm-footer-background-color: #1c1c1c; +} diff --git a/website/src/types.ts b/website/src/types.ts index dfd2b2595..dc19ebb8f 100644 --- a/website/src/types.ts +++ b/website/src/types.ts @@ -20,6 +20,7 @@ export enum DiscordLibraries { DISCORD_PHP = 'DiscordPHP', JAVACORD = 'Javacord', DISCORD_PY = 'discord.py', + DISNAKE = 'disnake', SERENITY = 'serenity', D_SHARP_PLUS = 'DSharpPlus', DISCORD_DOT_NET = 'Discord.Net',