Update project configuration files, and API routes accordingly. Add SQLite runtime file ignores to .gitignore for better file management.
Some checks failed
CI / Bot (Python) (push) Failing after 49s
CI / Dashboard (Next.js) (push) Failing after 11s

This commit is contained in:
TheOnlyMace
2026-07-21 17:11:38 +02:00
parent 5f34db4f3b
commit b4110c3d66
297 changed files with 2657 additions and 2768 deletions

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState, useEffect } from "react";
@@ -113,7 +111,7 @@ export function AdminContent() {
</div>
<div>
<h1 className="text-4xl font-black text-white tracking-tight font-outfit">Admin Control Panel</h1>
<p className="text-slate-400 mt-2 font-medium">Restricted access for ZyroX administrators only.</p>
<p className="text-slate-400 mt-2 font-medium">Restricted access for HexaHost administrators only.</p>
</div>
</div>
<button

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";
@@ -224,7 +222,7 @@ export function AntiNukeForm({ initialConfig, guildId }: AntiNukeFormProps) {
<ShieldAlert className="h-32 w-32 text-red-500" />
</div>
<h3 className="text-sm font-bold text-red-400 mb-2">Maximum Protection</h3>
<p className="text-xs text-slate-400 leading-relaxed mb-4">Anti-Nuke is fixed to instantly Ban malicious actors. Ensure that Zyrox&apos;s role is at the TOP of the role hierarchy for it to be able to ban admins.</p>
<p className="text-xs text-slate-400 leading-relaxed mb-4">Anti-Nuke is fixed to instantly Ban malicious actors. Ensure that HexaHost&apos;s role is at the TOP of the role hierarchy for it to be able to ban admins.</p>
<div className="flex items-center gap-2">
<div className="h-2 w-2 rounded-full bg-red-500 animate-pulse" />
<span className="text-[10px] font-black uppercase text-red-500">Fixed Punishments</span>

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";
@@ -197,7 +195,7 @@ export function AutoRoleForm({ initialConfig, roles, guildId }: AutoRoleFormProp
<div className="flex gap-3">
<div className="h-1.5 w-1.5 rounded-full bg-primary mt-1.5 shrink-0" />
<p className="text-[11px] text-slate-400 leading-relaxed">
<span className="text-slate-200 font-bold">Hierarchy Matter:</span> Ensure ZyroX&apos;s top role is <span className="text-primary italic">higher</span> than any role you select here.
<span className="text-slate-200 font-bold">Hierarchy Matter:</span> Ensure HexaHost&apos;s top role is <span className="text-primary italic">higher</span> than any role you select here.
</p>
</div>
<div className="flex gap-3">

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";
@@ -156,7 +154,7 @@ export function CustomRolesForm({ initialConfig, roles, guildId }: CustomRolesFo
<li> <code>.staff @user</code> - Assigns/Removes Staff role</li>
<li> <code>.girl @user</code> - Assigns/Removes Girl role</li>
<li> <code>.vip @user</code> - Assigns/Removes VIP role</li>
<li> Ensure Zyrox is placed higher than these roles in server settings!</li>
<li> Ensure HexaHost is placed higher than these roles in server settings!</li>
</ul>
</div>
</div>

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
import React from "react";
import { Switch } from "@/components/ui/switch";
import { Select, SelectOption } from "@/components/ui/select";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
import React from "react";
import { LucideIcon } from "lucide-react";
import { cn } from "@/lib/utils";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
import React from "react";
import { cn } from "@/lib/utils";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
import React from "react";
import Image from "next/image";
import Link from "next/link";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";
@@ -202,7 +200,7 @@ export function VerificationForm({ initialConfig, channels, roles, guildId }: Ve
</div>
<h3 className="text-sm font-bold text-primary mb-2">How It Works</h3>
<p className="text-xs text-slate-400 leading-relaxed mb-4">
Zyrox Verification ensures that no unauthorized bots or malicious users enter your server unverified.
HexaHost Verification ensures that no unauthorized bots or malicious users enter your server unverified.
</p>
<ul className="text-xs text-slate-500 space-y-2">
<li> The bot will create a panel in your Verification Channel.</li>

View File

@@ -1,19 +1,17 @@
/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀
* ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█
* ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀
* ║ +-+-+-+-+-+-+-+-+
* ║ |H|e|x|a|H|o|s|t|
* ║ +-+-+-+-+-+-+-+-+
* ║ ║
* ║ © 2026 CodeX Devs — All Rights Reserved ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/codexdev
* ║ youtube ── https://youtube.com/@CodeXDevs
* ║ github ── https://github.com/RayExo ║
* ║ discord ── https://discord.gg/hexahost
* ║ github ── https://github.com/theoneandonlymace
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";