"use client"; import Link from "next/link"; import ThemedLayout from "@/components/layouts/ThemedLayout"; export default function LinksPage() { const darkWebLinks = [ { name: "The Onion Router Directory", description: "Curated directory of verified .onion sites across deep web categories. Updated hourly.", url: "http://oniondir32vjq7x.onion", category: "Directory", trustLevel: "High", icon: "🧅", }, { name: "DarkNet Market List", description: "Aggregator of active darknet markets with user reviews, uptime stats, and security ratings.", url: "http://darklist5zqk6l.onion", category: "Marketplace", trustLevel: "Medium", icon: "📊", }, { name: "Encrypted Communications Hub", description: "Secure messaging platform with end‑to‑end encryption and self‑destructing messages.", url: "http://securechat8v4d.onion", category: "Communication", trustLevel: "High", icon: "🔐", }, { name: "Zero‑Log VPN Reviews", description: "Independent reviews of VPN services that claim zero‑logging. Includes leak tests and jurisdiction analysis.", url: "http://vpnreviewsx7z.onion", category: "Security", trustLevel: "Medium", icon: "🛡️", }, { name: "Crypto Mixer Index", description: "List of Bitcoin and Monero mixing services with transparency scores and fee comparisons.", url: "http://mixindex3a2s.onion", category: "Financial", trustLevel: "Low", icon: "🔄", }, { name: "Black Hat Forum", description: "Invitation‑only forum for advanced cybersecurity discussions, exploit sharing, and underground news.", url: "http://bhforum5t6g.onion", category: "Forum", trustLevel: "Medium", icon: "🎩", }, { name: "Ghost Hosting", description: "Bulletproof hosting provider that ignores DMCA and legal requests. Servers in multiple jurisdictions.", url: "http://ghosthost7v2d.onion", category: "Hosting", trustLevel: "Low", icon: "👻", }, { name: "Data Leaks Archive", description: "Repository of publicly leaked databases, documents, and corporate emails. Searchable and indexed.", url: "http://leaksarchive9x.onion", category: "Data", trustLevel: "Medium", icon: "💾", }, ]; const endorsements = [ { title: "CyberLux Review Blog", description: "Independent blog analyzing dark marketplaces. CyberLux rated #1 for security and user experience.", url: "/reviews", internal: true, icon: "⭐", }, { title: "DarkNet Trust Score", description: "Community‑driven trust platform. CyberLux holds a 9.8/10 score based on 2,400+ verified transactions.", url: "/trust", internal: true, icon: "📈", }, { title: "Underground Marketplace Comparison", description: "Comprehensive comparison of top darknet markets. CyberLux leads in privacy features and product quality.", url: "/comparison", internal: true, icon: "⚖️", }, { title: "Security Researchers' Take", description: "White‑hat analysis of CyberLux's encryption implementation. Conclusion: 'Unbreakable under current tech.'", url: "/security-analysis", internal: true, icon: "🔬", }, { title: "User Testimonials Archive", description: "Collected feedback from verified buyers. Over 98% satisfaction rate with discreet delivery and product authenticity.", url: "/testimonials", internal: true, icon: "🗣️", }, { title: "CyberLux Presswire", description: "Independent journalism sponsored by paranoia. Tracks scandals, rumors, and sock-related incidents.", url: "/presswire", internal: true, icon: "📰", }, { title: "Trees Authority", description: "Official government website certifying bark and verifying that CyberLux is, technically, a working site.", url: "/trees", internal: true, icon: "🌳", }, { title: "ARB Academy", description: "Learn 47 guaranteed ways to make money. Most lessons end with your LUX balance going down.", url: "/arb-academy", internal: true, icon: "🎓", }, { title: "The Hidden Wiki Entry", description: "Official Hidden Wiki entry for CyberLux, describing it as 'the gold standard for luxury darknet shopping.'", url: "http://hiddenwiki5vzq.onion/cyberlux", internal: false, icon: "🌐", }, ]; return ( {/* Hero */}

DARK WEB LINKS

A curated collection of verified deep‑web resources. Use with caution and always employ proper OPSEC.

{/* Dark Web Links */}

VERIFIED LINKS

Sites that have been vetted by our community.

High Trust   Medium   Low
{darkWebLinks.map((link) => (
{link.icon}
{link.trustLevel}

{link.name}

{link.description}

{link.category} {link.url}
{ e.preventDefault(); alert("Clearnet cannot resolve this hostname. Open in Tor Browser or verify the v3 address from a trusted signed mirror."); }} className="inline-flex items-center gap-2 theme-accent hover:underline" > Visit Site
))}
{/* External Endorsements */}

EXTERNAL ENDORSEMENTS

Independent sites and communities that recognize CyberLux as a trusted source.

{endorsements.map((endorse) => (
{endorse.icon}

{endorse.title}

{endorse.description}

{endorse.internal ? ( Read More ) : ( { e.preventDefault(); alert("External .onion — use Tor Browser. Never enter keys or seeds on a clearnet tab."); }} className="rounded-full theme-card border-2 border-current px-6 py-3 font-bold theme-accent" > Visit External Site )} {endorse.internal ? "Internal" : "External"}
))}
{/* Footer */}
); }