import React, { useState } from 'react'; import { TrendingUp, FileText, Users, Shield, Vote, History } from 'lucide-react'; import { Tabs, TabsContent, TabsList, TabsTrigger } from './ui/tabs'; import GovernanceOverview from './governance/GovernanceOverview'; import ProposalsList from './governance/ProposalsList'; import ElectionsInterface from './governance/ElectionsInterface'; import DelegationManager from './delegation/DelegationManager'; import MyVotes from './governance/MyVotes'; import GovernanceHistory from './governance/GovernanceHistory'; const GovernanceInterface: React.FC = () => { const [activeTab, setActiveTab] = useState('overview'); return (

On-Chain Governance

Participate in PezkuwiChain's decentralized governance. Vote on proposals, elect representatives, and shape the future of the network.

Overview Proposals Elections Delegation My Votes History
); }; export default GovernanceInterface;