+ {Object.entries(Fields).map(([name, node]) =>
+
+ {name}
+ {typeof node === "string" ? {node} : node}
+
+ )}
+
+ );
+}
+
+function FriendsTab({ guild }: GuildProps) {
+ return null;
+}
+
+function BlockedUsersTab({ guild }: GuildProps) {
+ return null;
+}
diff --git a/src/plugins/serverProfile/index.tsx b/src/plugins/serverProfile/index.tsx
new file mode 100644
index 00000000..1845b700
--- /dev/null
+++ b/src/plugins/serverProfile/index.tsx
@@ -0,0 +1,38 @@
+/*
+ * Vencord, a Discord client mod
+ * Copyright (c) 2023 Vendicated and contributors
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+import { addContextMenuPatch, NavContextMenuPatchCallback, removeContextMenuPatch } from "@api/ContextMenu";
+import { Devs } from "@utils/constants";
+import definePlugin from "@utils/types";
+import { Menu } from "@webpack/common";
+import { Guild } from "discord-types/general";
+
+import { openGuildProfileModal } from "./GuildProfileModal";
+
+const Patch: NavContextMenuPatchCallback = (children, { guild }: { guild: Guild; }) => () => {
+ children.splice(-1, 0, (
+