mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-05-30 23:51:03 +00:00
feat: add governance pages (Assembly, Justice, Polls) to web
- Add AssemblyPage with members tab (7 members) and sessions tab - Add JusticePage with dispute cases, expandable cards, status stats - Add PollsPage with interactive voting and results progress bars - Wire routes /governance/assembly, /governance/justice, /governance/polls in App.tsx - Activate assembly, justice, polls buttons in MobileHomeLayout (remove comingSoon)
This commit is contained in:
@@ -66,6 +66,9 @@ const Subdomains = lazy(() => import('@/pages/Subdomains'));
|
||||
const Messaging = lazy(() => import('@/pages/Messaging'));
|
||||
const TaxZekatPage = lazy(() => import('@/pages/finance/TaxZekatPage'));
|
||||
const BankPage = lazy(() => import('@/pages/finance/BankPage'));
|
||||
const AssemblyPage = lazy(() => import('@/pages/governance/AssemblyPage'));
|
||||
const JusticePage = lazy(() => import('@/pages/governance/JusticePage'));
|
||||
const PollsPage = lazy(() => import('@/pages/governance/PollsPage'));
|
||||
|
||||
// Network pages
|
||||
const Mainnet = lazy(() => import('@/pages/networks/Mainnet'));
|
||||
@@ -230,6 +233,9 @@ function App() {
|
||||
} />
|
||||
<Route path="/finance/zekat" element={<TaxZekatPage />} />
|
||||
<Route path="/finance/bank" element={<BankPage />} />
|
||||
<Route path="/governance/assembly" element={<AssemblyPage />} />
|
||||
<Route path="/governance/justice" element={<JusticePage />} />
|
||||
<Route path="/governance/polls" element={<PollsPage />} />
|
||||
<Route path="/presale" element={<Presale />} />
|
||||
<Route path="/launchpad" element={<PresaleList />} />
|
||||
<Route path="/launchpad/:id" element={<PresaleDetail />} />
|
||||
|
||||
Reference in New Issue
Block a user