Skip to content
2 changes: 2 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import RepositoriesPage from './pages/RepositoriesPage'
import ContributorsPage from './pages/ContributorsPage'
import ContributorProfilePage from './pages/ContributorProfilePage'
import NetworkPage from './pages/NetworkPage'
import TeamsPage from './pages/TeamsPage'
import AnalyticsPage from './pages/AnalyticsPage'
import GovernancePage from './pages/GovernancePage'
import SettingsPage from './pages/SettingsPage'
Expand All @@ -36,6 +37,7 @@ function AppContent() {
<Route path="/repositories" element={<RepositoriesPage />} />
<Route path="/contributors" element={<ContributorsPage />} />
<Route path="/contributors/:username" element={<ContributorProfilePage />} />
<Route path="/teams" element={<TeamsPage />} />
<Route path="/network" element={<NetworkPage />} />
<Route path="/analytics" element={<AnalyticsPage />} />
<Route path="/governance" element={<GovernancePage />} />
Expand Down
1 change: 1 addition & 0 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const LINKS = [
{ to: '/overview', label: 'Overview' },
{ to: '/repositories', label: 'Repositories' },
{ to: '/contributors', label: 'Contributors' },
{ to: '/teams', label: 'Teams Explorer' },
{ to: '/network', label: 'Network' },
{ to: '/analytics', label: 'Analytics' },
{ to: '/governance', label: 'Governance' },
Expand Down
Loading
Loading