You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: 🎨 add ProjectItem interface; add YTunes to projects
Added a ProjectItem interface to dement the structure of the project items to display. Also added an "internet" field to annotate URLs that are not associated with GitHub. Added the YTunes project for showcasing on the home page.
description: "A small network library written for use with my library Ekizu.",
18
-
github: true,
19
-
},
20
-
{
21
-
href: "https://github.com/xminent/ekizu",
22
-
label: "Ekizu",
23
26
description:
24
-
"A Discord API wrapper written in C++ for use in creating Discord applications. It is very similar to Discord.js, as it was my library of choice for making my Discord bots.",
27
+
"A small network library written for use with my library Ekizu, featuring simple clients for the various internet protocols such as TCP/UDP, HTTP(s), and WebSockets.",
25
28
github: true,
26
29
},
27
30
{
@@ -32,18 +35,24 @@ const projects = [
32
35
github: true,
33
36
},
34
37
{
35
-
href: "https://github.com/xminent/king",
38
+
href: "https://tinyurl.com/kingdiscordbot",
36
39
label: "King",
37
40
description:
38
-
"A Discord bot written in Typescript using Discord.js. This bot is filled with a lot of features including a custom command system with Slash Commands supported, a music bot, moderation bot, and many more fun commands and features which are made possible due to the multiple APIs being used.",
39
-
github: true,
41
+
"A Discord bot written in Typescript using Discord.js. This bot is filled with a lot of features including a custom command system with Slash Commands supported, a music bot, moderation bot, and many more fun commands and features which are made possible due to the multiple APIs being used. To see all the features, add the bot to your server and use the help command",
42
+
internet: true,
40
43
},
41
44
{
42
45
href: "/",
43
46
label: "This website 😲",
44
47
description:
45
48
'This website was made using Next.js, NextUI, TailwindCSS, and many more technologies. By incorporating multiple features such as Authentication, Page Routing, and a rate-limited API, I was able to create a website that seems professional. In addition, this application was designed to serve multiple subdomains, which can allow me to serve multiple websites on a single domain. You can find my blog using the subdomain "blog".',
46
-
github: false,
49
+
},
50
+
{
51
+
href: "https://github.com/xminent/ytunes",
52
+
label: "YTunes",
53
+
description:
54
+
"An Alexa skill that allows you to play music from YouTube. Features a player that allows you to play, pause, skip, and queue songs. This skill is currently in development.",
55
+
github: true,
47
56
},
48
57
];
49
58
@@ -102,6 +111,12 @@ export default function Home() {
0 commit comments