nivakaran commited on
Commit
805d8f7
·
verified ·
1 Parent(s): f895e5c

Deploy from GitHub Actions

Browse files
frontend/app/components/dashboard/EconomicIndicators.tsx CHANGED
@@ -111,7 +111,7 @@ const EconomicIndicators = ({ economyData }: EconomicIndicatorsProps) => {
111
  </div>
112
 
113
  <p className="text-xs text-muted-foreground mt-3 text-center">
114
- Source: Central Bank of Sri Lanka
115
  </p>
116
  </Card>
117
  );
 
111
  </div>
112
 
113
  <p className="text-xs text-muted-foreground mt-3 text-center">
114
+ Source: cbsl.gov.lk (Central Bank of Sri Lanka)
115
  </p>
116
  </Card>
117
  );
frontend/app/components/dashboard/FuelPriceMonitor.tsx CHANGED
@@ -62,11 +62,9 @@ const FuelPriceMonitor = ({ fuelData }: FuelMonitorProps) => {
62
  })}
63
  </div>
64
 
65
- {fetchedAt && (
66
- <p className="text-xs text-muted-foreground mt-3 text-center">
67
- Source: {fuelData?.source as string || "CEYPETCO"}
68
- </p>
69
- )}
70
  </Card>
71
  );
72
  };
 
62
  })}
63
  </div>
64
 
65
+ <p className="text-xs text-muted-foreground mt-3 text-center">
66
+ Source: ceypetco.gov.lk (CEYPETCO)
67
+ </p>
 
 
68
  </Card>
69
  );
70
  };
frontend/app/components/dashboard/HealthAlerts.tsx CHANGED
@@ -90,11 +90,9 @@ const HealthAlerts = ({ healthData }: HealthAlertsProps) => {
90
  </div>
91
  )}
92
 
93
- {fetchedAt && (
94
- <p className="text-xs text-muted-foreground mt-2">
95
- Updated: {new Date(fetchedAt).toLocaleTimeString()}
96
- </p>
97
- )}
98
  </Card>
99
  );
100
  };
 
90
  </div>
91
  )}
92
 
93
+ <p className="text-xs text-muted-foreground mt-2 text-center">
94
+ Source: health.gov.lk (Ministry of Health)
95
+ </p>
 
 
96
  </Card>
97
  );
98
  };
frontend/app/components/dashboard/WaterSupplyStatus.tsx CHANGED
@@ -65,11 +65,9 @@ const WaterSupplyStatus = ({ waterData }: WaterSupplyStatusProps) => {
65
  </div>
66
  )}
67
 
68
- {fetchedAt && (
69
- <p className="text-xs text-muted-foreground mt-3">
70
- Updated: {new Date(fetchedAt).toLocaleTimeString()}
71
- </p>
72
- )}
73
  </Card>
74
  );
75
  };
 
65
  </div>
66
  )}
67
 
68
+ <p className="text-xs text-muted-foreground mt-3 text-center">
69
+ Source: waterboard.lk (NWSDB)
70
+ </p>
 
 
71
  </Card>
72
  );
73
  };