import { getServerSession } from "next-auth/next"; import { authOptions } from "@/app/api/auth/[...nextauth]/route"; import Link from "next/link"; import FadeIn from "@/components/FadeIn"; import DiscordLoginButton from "@/components/DiscordLoginButton"; import PricingCard from "@/components/PricingCard"; import { getDb, checkVipStatus } from "@/lib/db"; export default async function VIPPage() { const session = await getServerSession(authOptions); // If not logged in, show login screen if (!session) { return (

Security Clearance Required

Wyvern VIP

Authentication via Discord protocol is strictly required to verify clearance level.

← Return to Base
); } // Get Discord ID from the session object (we mapped this in authOptions) const discordId = (session.user as any).id; const isVip = await checkVipStatus(discordId); return (

Identity Confirmed

{session.user?.name}
Clearance: {isVip ? 'VIP / UNRESTRICTED' : 'STANDARD / GUEST'}
[ TERMINATE SESSION ]
{isVip ? (

VIP Dashboard Access

Your security clearance is elevated. You now have unrestricted access to all highly classified directory index protocols.

{[ { id: 'sources', label: 'Sources', index: '01' }, { id: 'cracks', label: 'Cracks', index: '02' }, { id: 'scripts', label: 'Scripts', index: '03' }, { id: 'tools', label: 'Tools', index: '04' }, ].map((mod) => (
{mod.index}
{mod.label} ))}
) : (
Access Denied

Elevate Clearance

Your current identity lacks the necessary clearance protocols to access VIP-restricted directories. To proceed, a clearance elevation transaction is required via SECURE CRYPTO GATEWAY.

Automated provisioning via untraceable crypto transaction.
Zero KYC required.

)}
); }