This commit is contained in:
2026-04-18 01:23:37 +03:30
parent d43bd74a06
commit 80ba238713
16 changed files with 98 additions and 70 deletions
@@ -1,8 +0,0 @@
// Components Imports
import PlantPestDetection from '@views/dashboards/farm/pestDetection/PlantPestDetection'
const PestDetectionPage = async () => {
return <PlantPestDetection />
}
export default PestDetectionPage
@@ -1,7 +1,7 @@
import PestRiskPageWrapper from '@views/dashboards/farm/PestRiskPageWrapper'
import PestManagementPage from '@views/dashboards/farm/PestManagementPage'
const PestRiskPage = async () => {
return <PestRiskPageWrapper />
const PestRiskPage = () => {
return <PestManagementPage />
}
export default PestRiskPage
@@ -1,7 +0,0 @@
import PlantSimulator from '@views/dashboards/farm/plantSimulator/PlantSimulator'
const PlantSimulatorPage = () => {
return <PlantSimulator />
}
export default PlantSimulatorPage
@@ -1,7 +1,7 @@
import YieldHarvestPageWrapper from '@views/dashboards/farm/YieldHarvestPageWrapper'
import PlantProductionPage from '@views/dashboards/farm/PlantProductionPage'
const YieldHarvestPage = async () => {
return <YieldHarvestPageWrapper />
const YieldHarvestPage = () => {
return <PlantProductionPage />
}
export default YieldHarvestPage