Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions client/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export { CampaignDetailPage } from './CampaignDetailPage';
export { CreateCampaignPage } from './CreateCampaignPage';
export { AdminDashboardPage } from './AdminDashboardPage';
export { ActivityFeedPage } from './ActivityFeedPage';
export { InvestorDashboardPage } from './InvestorDashboardPage';

type PlaceholderPageProps = {
eyebrow: string;
Expand Down Expand Up @@ -74,17 +75,8 @@ export function FarmerDashboardPage() {
);
}

export function InvestorDashboardPage() {
return (
<PlaceholderPage
eyebrow="Dashboard"
title="Investor dashboard"
description="Monitor your agricultural investments, campaign progress, and returns."
/>
);
}

// ActivityFeedPage is the real implementation exported from ./ActivityFeedPage
// InvestorDashboardPage and ActivityFeedPage are the real implementations
// re-exported from their own modules above.

export function ProfilePage() {
return (
Expand Down