import React from 'react' import { BrowserRouter as Router, Routes, Route, Link, Navigate } from 'react-router-dom' import { Button } from '@/components/ui/button' import BountyBoard from '@/pages/BountyBoard' import StakingDashboard from '@/pages/StakingDashboard' import DeveloperLeaderboard from '@/pages/DeveloperLeaderboard' import EcosystemDashboard from '@/pages/EcosystemDashboard' function App() { return (
{/* Navigation Header */}

AITBC

Developer Ecosystem
{/* Main Content */}
} /> } /> } /> } /> } />
{/* Footer */}
) } export default App