More commands fixed and purge to here
diff --git a/src/context/users/userinfo.ts b/src/context/users/userinfo.ts
new file mode 100644
index 0000000..3b1a6bd
--- /dev/null
+++ b/src/context/users/userinfo.ts
@@ -0,0 +1,18 @@
+import { ContextMenuCommandBuilder, GuildMember, UserContextMenuCommandInteraction } from "discord.js";
+import { userAbout } from "../../commands/user/about.js";
+
+const command = new ContextMenuCommandBuilder()
+    .setName("User info")
+
+const callback = async (interaction: UserContextMenuCommandInteraction) => {
+    const guild = interaction.guild!
+    let member = interaction.targetMember
+    if (!member) member = await guild.members.fetch(interaction.targetId)
+    await userAbout(guild, member as GuildMember, interaction)
+}
+
+const check = async (_interaction: UserContextMenuCommandInteraction) => {
+    return true;
+}
+
+export { command, callback, check }