diff --git a/web/app/docs/about/contributors/page.tsx b/web/app/docs/about/contributors/page.tsx
new file mode 100644
index 0000000..ca36515
--- /dev/null
+++ b/web/app/docs/about/contributors/page.tsx
@@ -0,0 +1,65 @@
+import { Users, FlaskRound } from 'lucide-react';
+
+const contributors = [
+ {
+ name: 'MALOW',
+ role: 'Testing',
+ avatar: 'https://macrimi.github.io/ProxMenux/avatars/malow.png'
+ },
+ {
+ name: 'Segarra',
+ role: 'Testing',
+ avatar: 'https://macrimi.github.io/ProxMenux/avatars/segarra.png'
+ },
+ {
+ name: 'Aprilia',
+ role: 'Testing',
+ avatar: 'https://macrimi.github.io/ProxMenux/avatars/aprilia.png'
+ }
+];
+
+export default function Contributors() {
+ return (
+
+ {/* 🔹 Icon + Title */}
+
+
+
Contributors
+
+
+ {/* 🔹 Description */}
+
+ The ProxMenux project grows and thrives thanks to the contribution of its collaborators.
+
+
+ This is the well-deserved recognition of their work:
+
+
+ {/* 🔹 Contributors List */}
+
+ {contributors.map((contributor) => (
+
+
+

+
+
+
+
+
{contributor.name}
+
{contributor.role}
+
+ ))}
+
+
+ {/* 🔹 Call to Action */}
+
+ Would you like to contribute? You can collaborate as a tester, developer, designer, or by sharing ideas and suggestions. Any contribution is welcome!
+
+
+ );
+}
+
diff --git a/web/components/DocSidebar.tsx b/web/components/DocSidebar.tsx
index 6a49713..1ecfa3b 100644
--- a/web/components/DocSidebar.tsx
+++ b/web/components/DocSidebar.tsx
@@ -71,6 +71,7 @@ const sidebarItems: MenuItem[] = [
submenu: [
{ title: "Code of Conduct", href: "/docs/about/code-of-conduct" },
{ title: "FAQ", href: "/docs/about/faq" },
+ { title: "Contributors", href: "/docs/about/contributors" },
],
},
{ title: "External Repositories", href: "/docs/external-repositories" },
diff --git a/web/public/avatars/aprilia.png b/web/public/avatars/aprilia.png
new file mode 100644
index 0000000..c5d525c
Binary files /dev/null and b/web/public/avatars/aprilia.png differ
diff --git a/web/public/avatars/malow.png b/web/public/avatars/malow.png
new file mode 100644
index 0000000..6f68305
Binary files /dev/null and b/web/public/avatars/malow.png differ
diff --git a/web/public/avatars/segarra.png b/web/public/avatars/segarra.png
new file mode 100644
index 0000000..0223afd
Binary files /dev/null and b/web/public/avatars/segarra.png differ