"use client"; import { useEffect, useState } from "react"; import IconBox from "@/components/IconBox"; import tokenomicsImg from "@/assets/images/tokenomics.png"; import Image from "next/image"; import { motion } from "framer-motion"; export default function TokenomicsSection() { const [activeState, setActiveState] = useState(0); useEffect(() => { const interval = setInterval(() => { setActiveState((prev) => (prev === 1 ? 0 : prev + 1)); }, 5000); return () => clearInterval(interval); }, []); return (
} text="Tokenomics" /> Fair distribution at prority Our share is designed to ensure equitable access and rewards for all participants. Through a transparent and decentralized approach, we incentivize contributors.
{activeState === 0 && ( <>

Circulating Supply (95%)

The majority of tokens are allocated for general circulation, enabling wide accessibility and active ecosystem participation.

  • Transactions: Facilitating payments between GPU renters and providers.
  • Liquidity: Supporting smooth trading on decentralized exchanges and maintaining token stability.

Empowers community & the platform's core functionality.

)} {activeState === 1 && ( <>

Team Allocations (2%)

A small portion of tokens is reserved for the project team, vested over a multi-year period to align incentives with long-term platform success. These funds support ongoing development, attract top talent, and ensure continuous innovation.

Marketing Operations (1%)

Dedicated to promoting the platform and driving adoption through campaigns, community programs, and partnerships.

Treasury & Ecosystem Development{" "} (2%)

Reserved for research, grants, and maintaining operational resilience to ensure long-term platform sustainability.

)}
{[1, 2].map((_, index) => ( ))}
); }