"use client"; import { Users, Megaphone, Building, CircleDollarSign } from "lucide-react"; import { useState } from "react"; const tokenomicsData = [ { title: "Circulating Supply (90%)", description: "The majority of tokens are allocated for general circulation, ensuring wide accessibility and active participation in the ecosystem. This design reduces centralization risks, enhances market liquidity, and ensures a fair launch.", buttons: ["[ DETAILS ]", "[ DETAILS ]", "[ DETAILS ]"], className: "md:col-span-2", icon: CircleDollarSign, }, { title: "Team Allocation (4.5%)", description: "A portion of tokens is reserved for the project team to support ongoing development, attract top talent, and ensure continuous innovation. These tokens are vested over a multi-year period to align incentives with long-term platform success.", buttons: ["[ DETAILS ]"], icon: Users, }, { title: "Marketing Operations (1%)", description: "Dedicated to promoting the platform and driving adoption through campaigns, community programs, and partnerships.", buttons: ["[ DETAILS ]"], icon: Megaphone, }, { title: "Treasury & Ecosystem Development (4.5%)", description: "Reserved for research, grants, and maintaining operational resilience to ensure long-term platform sustainability. This allocation supports community incentives, expansions, and bounties.", buttons: ["[ DETAILS ]", "[ DETAILS ]", "[ DETAILS ]"], className: "md:col-span-2", icon: Building, }, ]; export function Tokenomics() { const [activeCard, setActiveCard] = useState(null); return (

[ TOKENOMICS ]

Simple Tokenomics

Our tokenomics model is straightforward and transparent, designed to align with the interests of our community and stakeholders. Detailed information about token distribution and allocation will be provided to ensure clarity and trust.

{tokenomicsData.map((item, index) => (
setActiveCard(index)} onMouseLeave={() => setActiveCard(null)} >
{item.icon && }

{item.title}

{item.description}

))}
3D Tokenomics Illustration
); }