"use client"; import { useState, useEffect } from "react"; import ThemedLayout from "@/components/layouts/ThemedLayout"; export default function AwardsPage() { const [glitch, setGlitch] = useState(false); useEffect(() => { const interval = setInterval(() => { setGlitch(true); setTimeout(() => setGlitch(false), 100); }, 3000); return () => clearInterval(interval); }, []); const awards = [ { year: "2025", title: "Best Market Infrastructure", winner: "The Candy Shop", icon: "🏆" }, { year: "2024", title: "Most Secure Node", winner: "The Sanctuary", icon: "🛡️" }, { year: "2024", title: "Innovation in Shared Entities", winner: "Darknet Ping Pong", icon: "🔮" }, { year: "2023", title: "Excellence in OpSec Training", winner: "Arb Academy", icon: "🎓" }, ]; return (
S.A.

The Shadow Awards

Recognizing Excellence in the Void

{awards.map((a, i) => (
{a.icon}
{a.year} Laureate

{a.title}

Awarded to:
{a.winner}
))}

Official Accreditation

The Shadow Awards committee is comprised of anonymous delegates from the top 100 nodes. Selection is based on uptime, security, and contribution to the network's growth.

End of Official Record
); }